.login-container {
    background: whitesmoke;   /* changed to white-smoke */
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.login-form-card {
    background: #ffffff;  /* pure white */
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* stronger shadow for visibility */
    max-width: 500px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.login-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 16px;
}

/* User Icon Section */
.user-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.user-icon-box {
    width: 80px;
    height: 60px;
    background-color: #6c757d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.user-icon {
    color: white;
    font-size: 24px;
}

/* Decorative Elements */
.decorative-elements {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.circle-element {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
}

.circle-1 {
    width: 12px;
    height: 12px;
    border-color: #17a2b8;
    top: 20px;
    left: 10px;
}

.circle-2 {
    width: 8px;
    height: 8px;
    border-color: #28a745;
    bottom: 30px;
    right: 20px;
}

.circle-3 {
    width: 10px;
    height: 10px;
    border-color: #ffc107;
    top: 50px;
    right: 10px;
}

.triangle-element {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #28a745;
}

/* Form Styling */
.login-input {
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.login-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
    background-color: white;
}

.login-btn {
    background-color: #28a745;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #218838;
}
.forgot-link, .register-link {
    color: #007bff;   /* make them blue */
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
.forgot-link:hover, .register-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .login-form-card {
        padding: 30px 20px;
    }

    .row.align-items-center {
        flex-direction: column;
    }

    .col-5, .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .user-icon-container {
        height: 120px;
        margin-bottom: 20px;
    }

    .user-icon-box {
        width: 70px;
        height: 50px;
    }

    .user-icon {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .login-form-card {
        margin: 10px;
        padding: 25px 15px;
    }
}
