/* Basic login page styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: url('background-login.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffcc00;
    text-transform: uppercase;
}

h2 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    font-size: 1.1rem;
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        margin: 50px auto;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .btn {
        font-size: 1rem;
    }
}


/* Basic button styling for an anchor tag */
a.btn {
    display: inline-block;
    background-color: #4CAF50;  /* Button background color */
    color: white;               /* Text color */
    padding: 12px 20px;         /* Padding for button size */
    text-align: center;         /* Center the text inside the button */
    text-decoration: none;      /* Remove underline from link */
    border-radius: 5px;         /* Rounded corners */
    font-size: 16px;            /* Font size */
    cursor: pointer;            /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

a.btn:hover {
    background-color: #45a049;  /* Darker background on hover */
}
