.login-card {
    width: 380px;
    padding: 36px;
    border-radius: 18px;
    background: rgba(10, 10, 18, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.title-area h1 {
    font-size: 42px;
    letter-spacing: 4px;
}


.login-button {
    height: 44px;
    border: none;
    border-radius: 10px;
    margin-top: 8px;
    background: white;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}


.login-button:hover {
    background: #dcdcdc;
    transform: translateY(-1px);
}


.text-links {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
}


.text-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    cursor: pointer;
}


.text-links a:hover {
    color: white;
    text-decoration: underline;
}


.message-box {
    display: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    margin-top: 4px;
}


.success-message {
    background: rgba(92, 255, 178, 0.15);
    color: #5CFFB2;
}


.error-message {
    background: rgba(255, 90, 90, 0.15);
    color: #ff8a8a;
}