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

body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    width: 400px;
    background: rgba(255, 255, 255, 0.97);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
    text-align: center;
}

.login-logo img {
    width: 90px;
    margin-bottom: 10px;
    animation: bounceIn 1s;
}

h3 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

p.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 25px;
    border: 1px solid #ccc;
    padding: 12px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #0095ff);
    transform: scale(1.05);
}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
