@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f7;
    min-height: 100vh;
    padding: 40px 20px;
}

.container_Custom {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.header p {
    font-size: 18px;
    color: #6b7280;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
   .cards-container img[alt="profile"] {
        width: 100%;
    }
    .cards-container .card-body{
        padding: 10px;
    }
.card:hover {
    border-color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.card.selected {
    border-color: #1e3a8a;
    background-color: #f8fafc;
}

.card-icon {
    background-color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.button-container {
    display: flex;
    justify-content: flex-end;
}

.continue-btn-role {
    background-color: #132660;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.continue-btn-role:hover {
    background-color: #132660;
    color: white;
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 28px;
    }

    .logo {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

/* create Account */



.container {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.header p {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="password"],
select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
select{
 background:transparent;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: #1e3a8a;
}

input::placeholder {
    color: #9ca3af;
}

.phone-input-wrapper {
    display: flex;
    gap: 0;
    padding: 0;
}

.country-code {
    width: 80px;
    padding: 12px 8px;
}

.phone-input {
    flex: 1;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 18px;
    padding: 4px;
}

.password-requirements {
    margin-top: 12px;
    margin-bottom: 24px;
}


.requirement .check {
    display: inline-block;
    width: 20px;
    font-weight: bold;
    text-align: center;
    margin-right: 5px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
    min-width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #132660;
}

.checkbox-group label {
    font-size: 14px;
    font-weight: 400;
    color: #4b5563;
    margin: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: #1e3a8a;
    text-decoration: underline;
}

.continue-btn {
    width: 100%;
    background-color: #132660;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}



.footer-text {
    text-align: center;
    font-size: 16px;
    color: #404040;
}

.footer-text a {
    color: #132660;
    text-decoration: none;
    font-weight: 600;
}

.footer-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

/* Welcome css start */

.container-wrapper {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
}

.welcome-header {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-header h1 {
    font-size: 30px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.welcome-header p {
    font-size: 16px;
    color: #404040;
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #d4d4d4;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.btn-continue {
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}



.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 15px;
    color: #6b7280;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.social-btn img {
    width: 24px;
    height: 24px;
}

.login-link {
    text-align: center;
    font-size: 16px;
    color: #404040;
}

.login-link a {
    color: #132660;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.role-selector {
    background: #e5e7eb;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: fit-content;
    margin: 0 auto;
}

.role-text {
    font-size: 15px;
    font-weight: 600;
    color: #132660;
}

.btn-change {
    background-color: #132660;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-change:hover {
    background-color: #132660;
    color: white;
}
.bi-arrow-repeat::before {
    font-size: 18px;
    content: "\f130";
}

@media (max-width: 576px) {
    .form-card {
        padding: 40px 30px;
    }

    .welcome-header h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .social-btn {
        width: 55px;
        height: 55px;
    }
}
/* reset Password Css start*/


.container-wrapper {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.header-section p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.reset-card {
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.form-label .required {
    color: #1a202c;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.btn-next {
    background-color: #132660;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.btn-next:hover {
    background-color: #132660;
    color: white;
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.back-to-login a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .reset-card {
        padding: 40px 30px;
    }

    .header-section h1 {
        font-size: 26px;
    }

    .header-section p {
        font-size: 15px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

/* otp screen for reset password start */


.container-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.header-section p {
    font-size: 16px;
    color: #6b7280;
}

.verification-card {
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.code-input {
    width: 60px;
    height: 60px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    background: #f9fafb;
    transition: all 0.2s;
    outline: none;
}



.code-input:not(:placeholder-shown) {
    background: white;
    border-color: #1e3a8a;
}

/* Remove spinner arrows for number input */
.code-input::-webkit-outer-spin-button,
.code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.code-input[type=number] {
    -moz-appearance: textfield;
}

.btn-continue {
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    cursor: pointer;
}



.btn-continue:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.resend-section {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.resend-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .verification-card {
        padding: 40px 25px;
    }

    .code-inputs {
        gap: 8px;
    }

    .code-input {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .header-section h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }
}
/* login css start */


.container-wrapper {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 16px;
    color: #6b7280;
}

.login-card {
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .form-control {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 18px;
    padding: 0;
}

.password-toggle:hover {
    color: #6b7280;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top:8px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #1e3a8a;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

.form-check-label {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.forgot-link {
    font-size: 14px;
    color: #132660;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    background-color: #132660;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-login:hover {
    background-color: #132660;
    color: white;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 15px;
    color: #6b7280;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.social-btn img,
.social-btn svg {
    width: 24px;
    height: 24px;
}

.create-account-text {
    text-align: center;
    font-size: 16px;
    color: #404040;
}

.create-account-text a {
    color: #132660;
    text-decoration: none;
    font-weight: 600;
}

.create-account-text a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .login-card {
        padding: 40px 30px;
    }

    .header-section h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .social-btn {
        width: 55px;
        height: 55px;
    }
}
/* Email Verification css start */

.container-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.header-section p {
    font-size: 16px;
    color: #6b7280;
}

.verification-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.code-inputs {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

 .code-inputs .code-input {
    width: 64px;
    height: 64px;
    border: 2px solid ##E5E5E5;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    background: #F5F5F5;
    outline: none;
}



.code-input:not(:placeholder-shown) {
    background: white;
    border-color: #1e3a8a;
}
.code-inputs .code-input:not(:placeholder-shown){
    background: #F5F5F5;
    border-color: #E5E5E5;
}

/* Remove spinner arrows for number input */
.code-input::-webkit-outer-spin-button,
.code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.code-input[type=number] {
    -moz-appearance: textfield;
}

.btn-continue {
    background-color: #132660;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-continue:hover {
    background-color: #132660;
    color: white;
}

.btn-continue:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.resend-section {
    text-align: center;
    font-size: 16px;
    color: #404040;
}

.resend-link {
    color: #132660;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .verification-card {
        padding: 40px 25px;
    }

    .code-inputs {
        gap: 8px;
    }

    .code-input {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .header-section h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }
}
/* password rest form css start */



.logo {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #132660;
    margin-bottom: 64px;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.header-section p {
    font-size: 16px;
    color: #6b7280;
}

.reset-card {
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.password-wrapper {
    position: relative;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 13px 45px 13px 16px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 18px;
    padding: 0;
}

.password-toggle:hover {
    color: #6b7280;
}

.password-requirements {
    margin: 0px 0 30px 0;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 0px;
    font-size: 13px;
    color: #4b5563;
}

.requirement .icon {
    color: #ef4444;
    font-weight: bold;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

.requirement.met .icon {
    color: #10b981;
}

.btn-reset {
    background-color: #132660;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.btn-reset:hover {
    background-color: #132660;
    color: white;
}

.btn-reset:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.back-to-login {
    text-align: center;
}

.back-to-login a {
    color: #132660;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.back-to-login a:hover {
    text-decoration: underline;
}

.sub-role-select{
    display:none;
}

.phone-input-wrapper select.country-code{
    border-top-right-radius:0;
    border-bottom-right-radius:0;
    background: transparent;
}

/*
.phone-input-wrapper input.phone-input{
    border-left:0;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
}
*/

.requirement span i{
    font-size: 18px;
    color: #E62626;
}

.requirement span i.bi-check2 {
    font-size: 18px;
    color: #299800;
}

.sub-role-select {
    margin-top: 8px;
}

label.radio-btn-label{
  margin-bottom:0;
  font-size: 16px;
}

.form-check input[type="radio"]{
    transform:scale(1.4)
}

input[type="radio"] {
  accent-color: #132660;
}

@media (max-width: 576px) {
    .reset-card {
        padding: 40px 30px;
    }

    .header-section h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 40px;
    }
}