@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.welcome-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-header__title {
    font-size: xx-large;
    margin-top: 200px;
    animation: rotate 3s infinite;
}

.welcome-header__text {
    font-size: medium;
    margin-top: 50px;
    width: 50%;
    text-align: center;
    color: rgb(172, 172, 255);
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

input {
    margin: 10px 50px;
    border: none;
    box-shadow: 0px 5px 10px lavender;
    padding: 10px;
    border-radius: 5px;
    background-color: lavender;
}

input[type="submit"] {
    background-color: rgb(191, 172, 255);
}

input[type="submit"]:hover {
    background-color: rgb(160, 132, 253);
    cursor: pointer;
}

.find_account {
    text-align: center;
    margin-top: 30px;
}