.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-form-container {
    width: 100%;
    max-width: 550px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-logo {
    text-align: center;
    width: 100%;
}

.login-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

h1,
h2 {
    color: #2a5298;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2a5298;
    display: flex;
    align-items: center;
}

input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #2a5298;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #2a5298;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    font-size: 0.9rem;
}

.message.error {
    background: #fee2e2;
    color: #dc2626;
    display: block;
}

.message.success {
    background: #dcfce7;
    color: #16a34a;
    display: block;
}

.back-to-login {
    margin-top: 20px;
    text-align: center;
}

.back-to-login a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}