@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4e73df, #6f42c1);
}

.auth-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.auth-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: #333;
}

.form-control {
    border-radius: 10px;
    padding: 12px 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6f42c1;
}

.btn-login {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #4e73df, #6f42c1);
    border: none;
    color: #fff;
    font-weight: 500;
}

.btn-login:hover {
    opacity: 0.9;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer a {
    color: #6f42c1;
    text-decoration: none;
    font-weight: 500;
}
