body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #FFFFFF, #FF4B4B); /* White and vibrant red */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-page {
    background: #FFF; /* White for a clean, minimal look */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.login-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

h1, h4 {
    color: #FF4B4B; /* Mixue's signature red */
}

.animated-button {
    width: 100%;
    padding: 10px;
    background: #FF4B4B; /* Vibrant red for buttons */
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.animated-button:hover {
    background: #E43E3E; /* Slightly darker shade on hover */
    transform: scale(1.05);
}
