body {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-container {
    text-align: center;
    padding: 20px;
    max-width: 400px;
    width: 100%;
}

.logo {
    width: 50px;
    margin-bottom: 20px;
}

.login-heading {
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    margin-bottom: 10px;
}

.login-subtext {
    color: #000000;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.label-text {
    text-align: left;
    margin-bottom: 5px;
    margin-top: 0;
}

.form-control {
    border-radius: 8px;
    background-color: white;
    width: 100%;
    border: 1px solid #E4E4E7;
    padding: 6px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #00B7E5;
    box-shadow: 0 0 5px #00B7E5;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    z-index: 1;
}

.btn-signin {
    width: 100%;
    background-color: #00B7E5;
    border: 1px solid #00B7E5 !important;
    color: #FFFFFF;
    border-radius: 25px;
    padding: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background-color: #FFFFFF;
    border: 1px solid #00B7E5 !important;
    /* Ensure border is applied on hover */
    color: #00B7E5;
}

.forgot-password {
    color: #000000;
    font-size: 12px;
    text-decoration: none;
    display: block;
    text-align: right;
    margin-top: 5px;
    font-weight: 600;
}

.signup-link {
    color: #000000;
    font-size: 12px;
    margin-top: 10px;
}

.signup-link a {
    color: #00B7E5;
    text-decoration: none;
    font-weight: 600;
}

.or {
    color: #000000;
    font-size: 12px;
    margin: 20px 0;
    position: relative;
}

.or::before,
.or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #000000;
}

.or::before {
    left: 0;
}

.or::after {
    right: 0;
}

.social-buttons img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

@media (max-width: 576px) {
    .login-container {
        padding: 10px;
    }

    .form-control,
    .btn-signin {
        width: 100%;
    }
}