/* This styling goes for login and register */

body {
    margin: 0;
    color: white;
    background-image: linear-gradient(to bottom, #677AE4, #754FA7);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    background-image: linear-gradient(to bottom, #677AE4, #754FA7);
    padding: 20px;
    border-radius: 5px;
    gap: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 600px;
    display: flex;
    flex-direction: column;
}

form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button {
    padding: 10px;
    background-color: #56B254;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #4A9B45;
    transition: background-color 0.3s ease;
}