@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f6f8;
    color: #333;
}

.login-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    transition: all 0.3s ease;
    border-top: 4px solid #005eb8;
    text-align: center;
    /* Helper to align logo if inline-block */
}

.login-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 25px;
    background-color: #141b4d;
    /* Dark Navy from CGF Brand */
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header h2 {
    font-family: 'Montserrat', sans-serif;
    color: #005eb8;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.login-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
    /* Reset text align for form elements */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: #005eb8;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.1);
}

.btn-login {
    width: 100%;
    padding: 15px;
    background-color: #005eb8;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.btn-login:hover {
    background-color: #004a91;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.alert-success {
    background-color: #e3f2fd;
    color: #005eb8;
    border: 1px solid #bbdefb;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}