@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    background: linear-gradient(to right, #283c86, #45a247);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: fadeIn 1.5s ease-in-out;
}

.login-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.login-container:hover {
    transform: scale(1.05);
}

.login-form h2 {
    margin-bottom: 20px;
    color: #45a247;
    text-align: center;
}

.form-group label {
    color: #ffffff;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    transition: background 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: #ffffff;
}

.btn-primary {
    background: #45a247;
    border: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #283c86;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
