/* Reset font and basic body styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login container */
.login-container {
    width:340px;
    background: #fff;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

/* Heading */
.login-container h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #FFB300;
    margin-bottom: 25px;
}

/* Subtitle */
.login-container .subtitle {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Inputs */
.login-container input[type=email],
.login-container input[type=password] {
    width:90%;
    padding: 12px 15px;
    margin: 10px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size:18px;
    transition: border 0.3s, box-shadow 0.3s;
}

.login-container input:focus {
    border-color: #FFB300;
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.3);
    outline: none;
}

/* Button */
.login-container button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #FFD700, #FFC107);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.login-container button:hover {
    background: linear-gradient(90deg, #FFC107, #FFB300);
    transform: translateY(-2px);
}

/* Error message */
.login-container .error {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Footer */
.login-container .footer {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 20px;
}