/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, #72EDF2 10%, #5151E5 100%);
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
    margin: 0;
}

.logo {
    width: 60%;
    height: auto;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"] {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

button {
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    background: #5151E5;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #7B68EE; /* Adjusted hover background color */
    color: #fff;
    transform: translateY(-3px); /* Slight floating effect */
}

footer {
    margin-top: 20px;
    font-size: 0.8em;
}

.alert {
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

@media (max-width: 600px) {
    .container {
        margin: 2px;
    }
}
