/* Custom CSS for Expensio Registration Page Form */

body {
    font-family: 'Public Sans', sans-serif; /* Ensure the font is applied */
    background-color: #e8e7e79f; /* Light gray background for the body */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.authentication-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make it take up the full viewport height */
    padding: 2rem;
}


.authentication-wrapper.authentication-basic .authentication-inner:before {
    width: 10px;
    height: 10px;
    content: " ";
    position: absolute;
    /* top: -55px; */
    right: 10px;
    background: url(img/dot.png) no-repeat;
}


    .authentication-inner {
    width: 100%;
    max-width: 450px; /* Adjust as needed */
    background-color: #ffffff;
    border-radius: 0.75rem;
}

.card {
    border-radius: 0.75rem;
    overflow: hidden; 
    padding-right: 40px;
    box-shadow: 1px 4px 8px rgba(82, 82, 82, 0.203);
}

.card-body {
    padding: 2.5rem;
}

/* Logo Styling */
.app-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.app-brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgb(59, 59, 59); /* Dark gray color for the link */
}

.app-brand-logo.demo svg {
    fill: #696cff; /* Primary color for the logo SVG */
}

.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); /* Dark gray for the heading */
    text-align:left;
    font-size: 20px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0;
}

.mb-6 {
    margin-bottom: 2rem; 
    color: rgba(59, 59, 59, 0.779);
}

/* Form Labels */
.form-label {
    color: rgb(59, 59, 59); /* Dark gray for labels */
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block; 
}

/* Input Fields */
.form-control {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
    color: rgb(59, 59, 59); 
    background-color: white; 
    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;
    padding: 10px 20px;
    box-shadow: 0 0 0 0.2rem #696cff70;
}

/* Password Toggle */
.form-password-toggle .input-group-text {
    background-color: rgb(226, 35, 35);
    border: 1px solid #ced4da;
    color: rgb(59, 59, 59);
    cursor: pointer;
    border-left: none;
    border-radius: 0 0.375rem 0.375rem 0;
}

/* Gender Radio Buttons */
.mb-6 > .form-label { /* Target the Gender label specifically */
    margin-bottom: 0.5rem;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
    color: rgb(59, 59, 59);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.radio-custom {
    position: relative;
    height: 14px;
    width: 14px;
    border: 2px solid #696cff;
    border-radius: 50%;
    margin-right: 10px;
    /* background-color: white; */
}

.radio-label input[type="radio"]:checked + .radio-custom::before {
    content: '';
    position: absolute;
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: 5px solid #696cff;
    /* background: #07071c; */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Terms and Conditions Checkbox */
.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.form-check-input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.form-check-input:checked {
    background-color: #696cff;
    border-color: #696cff;
}

.form-check-label {
    color: rgb(59, 59, 59);
    margin-left: 0.5rem;
}

.form-check-label a {
    color: #696cff;
    text-decoration: none;
}

.form-check-label a:hover {
    color: #5658cf;
}

/* Sign Up Button */
.btn-primary {
    background-color: #696cff;
    border-color: #696cff;
    color: white;
    width: 111%;
    border-radius: 0.5rem;
    padding:  10px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    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: #5e60e2;
    border-color: #5e60e2;
    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;
}

/* Already have an account Link */
.text-center {
    color: rgb(59, 59, 59);
    margin-top: 1.5rem;
}

.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;
}