﻿body {
    font-family: "Roboto";
}

.back {
    background: linear-gradient(120deg, rgb(100, 57, 134), rgb(152, 174, 213));
    position: absolute;
    width: 100%;
    height: 100%;
}

.registration-form {
    width: 400px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    top: 15%;
    background: transparent;
}

    .registration-form header {
        position: relative;
        z-index: 4;
        background: white;
        padding: 20px 40px;
        border-radius: 15px 15px 0 0;
    }

        .registration-form header h1 {
            font-weight: 900;
            letter-spacing: 1.5px;
            color: #333;
            font-size: 23px;
            text-transform: uppercase;
            margin: 0;
        }

        .registration-form header p {
            word-spacing: 0px;
            color: rgb(159, 172, 182);
            font-size: 17px;
            margin: 5px 0 0 0;
        }

    .registration-form form {
        position: relative;
    }

.input-section {
    width: 100%;
    position: absolute;
    display: flex;
    left: 50%;
    transform: translate(-50%, 0);
    height: 75px;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in;
}

    .input-section.folded {
        width: 95%;
        margin-top: 10px;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 1;
    }

        .input-section.folded input {
            background-color: rgb(233, 226, 192);
        }

        .input-section.folded span {
            background-color: rgb(233, 226, 192);
        }

        .input-section.folded + .folded {
            width: 90%;
            margin-top: 20px;
            left: 50%;
            transform: translate(-50%, 0);
            z-index: 0;
        }

            .input-section.folded + .folded input {
                background-color: rgb(225, 188, 239);
            }

            .input-section.folded + .folded span {
                background-color: rgb(225, 188, 239);
            }

    .input-section.fold-up {
        margin-top: -75px;
    }

.registration-form input {
    background: rgb(248, 248, 253);
    color: rgb(143, 143, 214);
    width: 80%;
    border: 0;
    padding: 20px 40px;
    margin: 0;
}

    .registration-form  input:focus {
        outline: none;
    }

    .registration-form  input::placeholder {
        color: rgb(143, 143, 214);
        font-weight: 100;
    }

.animated-button {
    width: 20%;
    background-color: rgb(212, 212, 255);
}

    .animated-button span {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        line-height: 75px;
        text-align: center;
        height: 75px;
        transition: all 0.2s ease-in;
    }

        .animated-button span i {
            font-size: 25px;
            color: rgb(153, 153, 248);
        }

    .animated-button .next-button {
        background: transparent;
        color: rgb(153, 153, 248);
        font-weight: 100;
        width: 100%;
        border: 0;
    }

.next {
    margin-top: -75px;
}

.success {
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translate(-50%, 0);
    height: 75px;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in;
    background: limegreen;
    margin-top: -75px;
}

    .success p {
        color: white;
        font-weight: 900;
        letter-spacing: 2px;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
