﻿/* login.css */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; /* Prevent scrollbars */
}

.login-page {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b3d4cf 0%, #dbe8f0 100%);
    position: relative;
}

    .login-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2); /* Light overlay for better contrast */
        z-index: 0;
    }

.login-form-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.login-box {
    width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 40px;
    overflow: hidden;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.brand-name {
    color: lightgray;
    margin-bottom: 10px;
    font-weight: 700;
}

.signin-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    width: 100%;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control {
    height: 45px;
    border-left: none;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #ced4da;
    }

.btn-primary {
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    background-color: #2196F3;
    border-color: #2196F3;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #1976D2;
        border-color: #1976D2;
    }

.btn-block {
    width: 100%;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .signup-link a {
        color: #2196F3;
        text-decoration: none;
        font-weight: 500;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

.external-providers {
    margin-top: 20px;
}

#menu-dropdown {
    display: none;
}

/* Forgot password link styling */
.form-group a {
    color: #2196F3;
    text-decoration: none;
    display: block;
    text-align: right;
    font-size: 14px;
    margin-top: 5px;
}

    .form-group a:hover {
        text-decoration: underline;
    }

/* Responsive styles */
@media (max-width: 480px) {
    .login-box {
        width: 90%;
        padding: 25px;
    }
}
