*{
    a{
        text-decoration: none;
    }
}
.html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.custom-input {
    background-color: #f8f9fa;
    border: 2px solid #f1f3f5;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

.btn-login {
    background: linear-gradient(to right, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.btn-login:hover {
    opacity: 0.9;
    box-shadow: 0 8px 15px rgba(118, 75, 162, 0.3);
}

@media (max-width: 480px) {
    .login-card {
        padding: 25px;
    }
}