body {
    background: radial-gradient(circle, #1a1a1a 0%, #0d0d0d 100%);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.login-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border-left: 5px solid #af1616; /* Your signature red */
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 4px; /* Sharper edges look more 'tech' */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h2 {
    letter-spacing: 4px;
    font-weight: 900;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #af1616;
    box-shadow: 0 0 10px rgba(175, 22, 22, 0.3);
    color: white;
}

.btn-danger {
    background-color: #af1616;
    border: none;
    transition: 0.4s;
}

.btn-danger:hover {
    background-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/******************* LOGIN VALIDATIONS*****************/

.loginError {
    text-align: center;
    padding: 15px;
    border: 2px solid #ffae00; /* Warning Orange */
    color: #ffffff;
    border-radius: 8px;
    background: rgba(255, 174, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.3);
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}