body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6a0dad, #000) no-repeat;
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    font-family: Arial, sans-serif;
    overflow: hidden; 
}

@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7b1fa2, #a733b7);
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(128, 0, 128, 0.7);
    width: 300px;
    box-sizing: border-box;
    
}

input[type="text"], input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 250px;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #6a0dad;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
    box-sizing: border-box;
}

button:hover {
    background-color: #4a0072;
}
