.login-wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #d9dbe1;
}
.login-wrapper-scroll {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    margin: 0;
    padding-top: 50px;
    background-color: #d9dbe1;
}
.login-card {
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    border: 5px solid rgba(0, 125, 180, 0.06);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin: auto;
}
.login-logo {
    width: 170px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}
.login-header {
    background-color: var(--bs-primary);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 20px;
}
.btn-signin:hover {
    background-color: #01618a;
}
.forgot-password {
    color: #007db4;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}
.login-footer {
    width: 100%;
    text-align: center;
    padding: 50px;
    margin-top: 0px;
}

/* Timer */

.timer-container {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Rotate to start from the top */
}

.timer-circle circle {
    fill: none;
    stroke-width: 4;
    stroke: #ccc; /* Background circle color (gray) */
    cx: 20;
    cy: 20;
    r: 16; /* Radius = (40px - stroke-width) / 2 */
}

.timer-circle .progress {
    stroke: var(--bs-success); /* Green progress bar */
    stroke-dasharray: 100.53; /* Circumference of the circle (2 * π * r = 2 * π * 16 ≈ 100.53) */
    stroke-dashoffset: 0;
    animation: deplete 60s linear forwards; /* 60 seconds animation */
}

@keyframes deplete {
    to {
        stroke-dashoffset: 100.53; /* Fully deplete the circle */
    }
}

.timer-counter {
    position: absolute;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #333; /* Pink color to match the example */
}