/* More Professional Look for Expensio Login Page Form */

body {
    font-family: 'Public Sans', sans-serif;
    background-color: #e8e7e79f; /* Softer background */
    -webkit-font-smoothing: antialiased; /* Improve font rendering */
    -moz-osx-font-smoothing: grayscale;
}

.authentication-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem; /* Add some padding around the container */
}

.authentication-inner {
    width: 100%;
    background-color: #ffffff;
    border-radius: 0.75rem;
    max-width: 450px; /* Slightly wider for a more substantial feel */
    /* Center the card */
}

.card {
    /* border: 1px solid #904343; Light border for definition */
    /* box-shadow: 0 2px 8px rgba(170, 105, 105, 0.08);  */
    border-radius: 0.75rem; 
    overflow: hidden; /* Clip rounded corners properly */
    box-shadow: 1px 4px 8px rgba(82, 82, 82, 0.203);
    padding-right: 40px;
}
    
.card-body {
    padding: 2.5rem; /* Slightly less padding for a tighter layout */
}

/* Logo Styling */
.app-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem; /* More spacing below the logo */
}

.app-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgb(59, 59, 59);  /* Darker text color */
}

/* .app-brand-logo.demo svg {
    fill: #696cff;
    width: 25px; 
    height: auto;
} */

.app-brand-link {
    align-items: center;
}

.app-brand-text.demo {
    color: rgba(0, 0, 0, 0.713);
    font-size: 28px; /* Slightly larger brand text */
    font-weight: 700; /* Semi-bold for emphasis */
    letter-spacing: -0.015em; /* Subtle letter spacing */
    align-items:center;
    padding-bottom: 0px;
    padding-left: 0px;
}

/* Heading and Subheading */
.mb-1 {
    color: rgb(59, 59, 59); 
    text-align:left;
    font-size: 1.50rem; 
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0;
}

.mb-6 {
    margin-bottom: 2rem; 
    color: rgb(59, 59, 59, 0.779);
}

.mb-8 {
    margin-bottom: 10px; /* More spacing for the remember me/forgot password area */
}


/* Form Labels */
.form-label {
    color:  rgb(59, 59, 59); 
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 10px;
    display: block; 
}

/* Input Fields */
.form-control {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 5px; /* More rounded input fields */
    padding: 10px 15px;
    font-size: 1rem;
    color: rgb(59, 59, 59);
    background-color: #fff; /* Ensure white background */
    box-shadow: inset 0 1px 2px rgba(99, 140, 253, 0.199); 
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 1px;
}

.form-control:focus {
    border-color: #696cff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #696cff70;
    padding: 10px 20px;
}




/* Remember Me Checkbox and Forgot Password Link */
.d-flex.justify-content-between.mt-8 {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    align-items: center; /* Vertically align checkbox and link */
}

.form-check-input {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.form-check-input:checked {
    background-color: #696cff;
    border-color: #696cff;
}

.form-check-label {
    color: #495057;
    margin-left: 5px;
    font-size: 0.9rem; /* Slightly smaller label */
}

.d-flex.justify-content-between.mt-8 a {
    color: #696cff;
    text-decoration: none;
    margin-left: 80px;
    font-size: 0.9rem;
    transition: color 0.15s ease-in-out;
}

.d-flex.justify-content-between.mt-8 a:hover {
    text-decoration: underline;
    color: #5658cf;
}

/* Login Button */

.mb-6 button {
    width: 112%;
}
.btn-primary {
    background-color: #696cff;
    border-color: #696cff;
    color: white;
    border-radius: 0.5rem;
    padding: 10px 30px; /* Slightly more padding */
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle button shadow */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary:hover {
    background-color: #5658cf;
    border-color: #5658cf;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(105, 108, 255, 0.5);
} */

.btn-primary.disabled, .btn-primary:disabled {
    background-color: #696cff;
    border-color: #696cff;
    opacity: 1;
    cursor: not-allowed;
}

/* Create Account Link */
.text-center {
    color: rgb(59, 59, 59);
    margin-top: 0px;
    margin-left: 45px;
    font-size: 0.9rem;
}

.text-center a {
    color: #696cff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease-in-out;   
}

.text-center a:hover {
    text-decoration: underline;
    color: #5658cf;
}