body {
    font-family: Arial, sans-serif;
    background-color: #f09d5a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.login-message {
    margin-top: 10px;
    color: red;
    font-size: 14px;
}

button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e63900;
}

header {
    margin-bottom: 20px;
    padding: 130px 0;
    text-align: center;
}

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

@media (max-width: 600px) {
    .logo {
        width: 50%;
    }
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.login-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: -150px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #ff8000;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.fade-out {
    animation: fadeOut 1s;
    opacity: 0;
    visibility: hidden;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
