/* Fullscreen background with animated gradient */
body {
    font-family: Arial, sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #fc84ee, #9e76fb, #75bbf5, #7df5f9);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

/* Home button from login page */
.home {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: #1d5a83;
    color: white;
    border: 1px solid black;
    border-radius: 10px;
    cursor: pointer;
}

/* Gradient Animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Login Form Container */
.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 320px;
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease-in-out;
}

.login-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Inputs */
input, button {
    width: 100%;
    margin: 10px -10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.594);
}

/* Button */
button {
    background-color: #3d27ba;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

button:hover {
    background-color: #1c3fc9;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(54, 5, 5, 0.3);
}