 body {
    background-color: #fafafa;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    text-align: center;
}

.login-box {
    background: white;
    border: 1px solid #dbdbdb;
    width: 350px;
    padding: 40px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 42px;
    margin: 0;
    color: #262626;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #dbdbdb;
    background: #fafafa;
    font-size: 14px;
    border-radius: 3px;
    box-sizing: border-box;
}

button {
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

button:hover {
    background-color: #218838;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #0095f6;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

.toast-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc3545;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    font-size: 16px;
    animation: slideDown 0.5s ease, fadeOut 0.5s ease 2.5s forwards;
}

@keyframes slideDown { from { top: 0; opacity: 0; } to { top: 20px; opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; top: 0; display: none; } }