:root {
    --bs-primary: #1E1B4B;
    --bs-success: #047857;
    --bs-warning: #A16207;
    --bs-font-sans-serif: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
    font-family: var(--bs-font-sans-serif);
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.myContainer {
    width: 100%;
    display: flex;
    height: 100%;
    border-radius: 10px;
    margin: 0;
    padding: 0;
}

.left-section {
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 55%;
    z-index: -2;
}

.right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    width: 45%;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
    top: 87px;
    left: calc(50% - 73px);
    position: absolute;
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
}

.logo img {
    height: 40px;
}

.login-form h2 {
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 10px;
}

.login-form p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.btn-login {
    background-color: var(--bs-primary);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.btn-login:hover {
    background-color: var(--bs-primary);
    color: white !important;
}

.forgot-password {
    font-size: 14px;
    text-align: right;
    display: block;
    margin-top: 5px;
    color: var(--bs-primary);
    text-decoration: none;
}


.left-section-img-cont {
    width: 25vw;
    height: 61vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--bs-primary);
    border-radius: 114.489px;
    transform: matrix(-1, 0.3, 0, 1, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}


@media only screen and (max-width: 900px) {
    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
        height: 100%;
    }

    .login-form {
        padding: 0 8vw;
    }
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    margin: 0px auto;
    width: 100%;

}

.form-control {
    padding: .675rem .85rem;
}

.left-section img {
    width: 26vw;
    height: auto;
}


.card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    display: flex;
    align-items: start;
    gap: 10px;
    justify-content: space-between;
    flex-direction: row;
    max-width: 289px;
}

.card img {
    width: 20px;
    height: 20px;
}

.card h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.card p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #555;
}

.savings {
    top: 40px;
    left: 20px;
}

.transactions {
    bottom: 120px;
    left: 20px;
}

.packages {
    top: 86px;
    right: 20px;
}

.progress {
    bottom: 40px;
    right: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    max-width: 340px;
    min-width: 330px;
}

.card-cont {
    position: absolute;
    width: 42vw;
    height: 61vh;
    border-radius: 20px;
    overflow: hidden;
}


.savings svg {
    background-color: var(--bs-primary-bg-subtle);
}

.transactions svg {
    background-color: var(--bs-primary-bg-subtle);
}

.packages svg {
    background-color: var(--bs-warning-bg-subtle);
}

.progress svg {
    background-color: var(--bs-success-bg-subtle);
}

.savings h4 {
    color: var(--bs-primary);
}

.transactions h4 {
    color: #3730A3;
}

.packages h4 {
    color: var(--bs-warning);
}

.progress h4 {
    color: var(--bs-success);
}


.card svg {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    padding: 5px;
}



.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;

}

.progress-fill {
    width: 65%;
    height: 100%;
    background: #fbbf24;
}

.progress-details {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.primary-color {
    color: var(--bs-primary);
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
    /* Space for the icon */
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    top: 33%;
    transform: translateY(-50%);
    cursor: pointer;
    color: gray;
}


.section-2,
.section-3,
.section-4,
.section-5,
.section-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    margin: 0px auto;
    width: 100%;
}

.forgot-container {
    max-width: 400px;
    text-align: center;
}

.forgot-title {
    font-weight: 700;
    color: var(--bs-primary);
    text-align: start;
}

.forgot-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 30px;
    text-align: start;
}

.option-box {
    background-color: #f1f5ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.option-box:hover {
    background-color: #e0e7ff;
    border-color: #3b82f6;
}

.option-box i {
    font-size: 24px;
    color: #3b82f6;
}

.option-content {
    margin-left: 15px;
}

.option-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.option-text {
    font-size: 0.85rem;
    color: #6b7280;
}


.otp-container {
    width: 100%;
    text-align: center;
}

.otp-title {
    text-align: start;
    font-weight: 700;
    color: var(--bs-primary);
}

.otp-subtitle {
    text-align: start;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.btn-dark-blue {
    background-color: var(--bs-primary);
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark-blue:hover {
    background-color: #2c2872;
}


.otp-container {
    background: #fff;
    border-radius: 10px;
}

.otp-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 0 5px;
}

.btn-primary {
    background-color: var(--bs-primary);
    border: none;
}

.btn-primary:hover {
    background-color: #15112d;
}

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

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