﻿
.back-quick-account {

}

.registration-form {
    width:100%;
    margin-left: auto;
    margin-right: auto;
}

    .registration-form header {
        position: relative;
        z-index: 4;
        background: white;
        padding: 10px 20px;
        border-bottom: solid 1px #37ae47;
        border-radius: 15px 15px 0 0;
    }

        .registration-form header h2 {
            font-weight: 900;
            letter-spacing: 1.2px;
            color: #333;
            font-size: 20px;
            text-transform: uppercase;
            margin: 0;
        }

        .registration-form header p {
            word-spacing: 0px;
            color: #9facb6;
            font-size: 17px;
            margin: 0;
            margin-top: 5px;
        }

    .registration-form form {
        position: relative;
        border-radius: 0 0 15px 15px;
    }

    .registration-form .input-section {
 
        display: flex;
        height: 60px;
       
        overflow: hidden;
        z-index: 1000;
        
    }

        .registration-form .input-section.folded {
            width: 95%;
            margin-top: 10px;
            left: 50%;
            transform: translate(-50%, 0);
            z-index: 1;
        }

            .registration-form .input-section.folded input {
                background-color: #37ae47;
            }

            .registration-form .input-section.folded span {
                background-color: #37ae47;
            }

            .registration-form .input-section.folded + .folded {
                width: 90%;
                margin-top: 10px;
                left: 50%;
                transform: translate(-50%, 0);
                z-index: 0;
            }

                .registration-form .input-section.folded + .folded input {
                    background-color: #37ae47;
                }

                .registration-form .input-section.folded + .folded span {
                    background-color: #37ae47;
                }

        .registration-form .input-section.fold-up {
            margin-top: -75px;
        }

    .registration-form form input {
        background: white;
        color: #37ae47;
        width: 70%;
        border: 0;
        padding: 10px 20px;
        margin: 0;
        border-radius: 0px 0px 0px 15px;
    }

        .registration-form form input:focus {
            outline: none;
        }

        .registration-form form input::-moz-placeholder {
            color: #37ae47;
            font-weight: 100;
        }

        .registration-form form input:-ms-input-placeholder {
            color: #37ae47;
            font-weight: 100;
        }

        .registration-form form input::placeholder {
            color: #37ae47;
            font-weight: 100;
        }

.animated-button {
    width: 30%;
    background-color: #37ae47;
    border-radius: 0 0 15px 0;
    text-align:center;
}

    .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: #9999f8;
        }

    .animated-button .next-button {
        background: transparent;
        color: #9999f8;
        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;
    }
