﻿body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.login-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

    .login-header h2 {
        color: #2c3e50;
    }

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.btn-login {
    background: linear-gradient(to right, #3498db, #2c3e50);
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    letter-spacing: 1px;
}

    .btn-login:hover {
        opacity: 0.9;
    }

.forgot-password {
    text-align: center;
    margin-top: 15px;
}

    .forgot-password a {
        color: #3498db;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }
