body {
    font-family: Arial, sans-serif;
    background: url('../media/background_login.jpg') no-repeat center center fixed; 
    background-size: cover; 
    padding: 50px;
}

h2 {
    text-align: center;
}

.container {
    max-width: 400px;
    margin: auto;   
    background: rgba(255, 255, 255, 0.6); 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.input-email{
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

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

.btn-register {
    color: #795e05;
    text-decoration: none;
    font-weight: bold;
}

.btn-row {
    display: flex;
    justify-content: center; 
    gap: 50px; 
    margin-top: 20px;
}

.btn-row button {
    width: 30%; 
    background-color: #795e05;
    color: rgb(255, 255, 255);
    border: none;   
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll; 
        background-size: cover; 
        background-position: center; 
    }

    .btn-group {
        flex-direction: column; 
        gap: 20px; 
    }

    .btn-group button {
        width: 80%; 
        margin: 0 auto; 
    }

    .container {
        width: 90%; 
        padding: 20px; 
    }

    h2 {
        font-size: 20px; 
    }

    input[type="email"], input[type="password"], input[type="text"] {
        font-size: 12px; 
    }
}

@media (max-width: 480px) {
    body {
        background-size: contain; 
        background-position: top; 
    }

    .btn-group button {
        width: 100%; 
    }

    .container {
        padding: 15px; 
    }

    h2 {
        font-size: 18px;
    }

    input[type="email"], input[type="password"], input[type="text"] {
        font-size: 10px; 
    }
}