@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fff;
} */

.login-container {
    justify-content: center;
    justify-items: center;
    background-color: #fff;
    border: 2px solid #ffb6c1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    width: 300px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #ff69b4;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #ff69b4;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffb6c1;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.input-group input:focus {
    border-color: #ff69b4;
    background-color: #ffe4e1;
}

button {
    background-color: #ff69b4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #ff1493;
    transform: scale(1.05);
}

.signup-link {
    margin-top: 15px;
    color: #ff69b4;
}

.signup-link a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.signup-link a:hover {
    color: #ff1493;
}

.slide-in {
    animation: slideIn 0.5s ease-in;
}
