/*-------------- Register --------------*/
.register{
    margin-top: 70px;
    width: 100%;
    height: auto;
    overflow: auto;
    background-color: #f9f9f9;
}

.register-wrapper{
    margin: 100px auto;
    width: 700px;
    height: auto;
}

.error-display{
    width: 700px;
    height: auto;
    margin-bottom: 60px;
    font-weight: bold;
    color: red;
}

.register-title{
    width: 100%;
    margin-bottom: 50px;
}

.register-form{
    width: 100%;
    height: auto;
    margin-top: 50px;
    margin-top: 100px;
}

.register-form-personal{
    margin-bottom: 70px;
}

.register-form-selectplan{
    margin-bottom: 70px;
}

.register-form-personaldetails{
    margin-bottom: 70px;
}

.register-form-paymentdetails{
    margin-bottom: 120px;
}

.register-form-paymentdetails-left{
    display: inline-block;
    vertical-align: top;
    width: 400px;
    margin-top: 18px;
}

#card-element{
    padding: 10px 20px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    background-color: #ffffff;
}

#card-errors{
    margin-top: 15px;
    color: red;
    font-size: 14px;
    height: 14px;
}

.register-form form select{
    width: 96%;
    padding: 15px 20px;
    border: 1px solid lightgrey;
    margin-top: 15px;
    margin-bottom: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%);
    background-position:
        calc(100% - 30px) calc(1.00em + 5px),
        calc(100% - 25px) calc(1.00em + 5px),
        calc(100% - 3.0em) 0.6em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 10px;
    font-family: helvetica;
    font-size: 0.9em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.register-form form select:hover{
    cursor: pointer;
    border: 1px solid #7539e3;
}

.register-form form select:focus{
    outline: none !important;
    border: 1px solid #ff8300;
}

.register-form form input{
    margin: 10px 0px;
    padding: 15px 20px;
    background-color: none;
    border: 1px solid lightgrey;
    width: 90%;
    font-size: 1em;
    border-radius: 10px;
    font-size: 0.9em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.register-form form input:hover{
    cursor: pointer;
    border: 1px solid #7539e3;
}

.register-form form input:focus{
    outline: none !important;
    border: 1px solid #ff8300;
}

.register-form form button{
    margin: 0px auto;
    margin-left: 230px;
    width: 200px;
    height: 60px;
    padding: 10px 20px;
    border-radius: 90px;
    background-color: #7539e3;
    font-family: helvetica;
    font-weight: bold;
    text-align: center;
    color: white;
    transition: background-color 0.3s;
    border: none;
}

.register-form form button:hover{
    background-color: #ff8300;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-bottom{
    margin-top: 50px;
    width: 700px;
    height: 60px;
}


#payment-loading{
    display: none;
    margin-left: 330px;
    width: 45px;
}

.register-form-paymentdetails-right{
    margin-top: 20px;
    margin-left: 94px;
    display: inline-block;
    vertical-align: top;
    width: 200px;
    font-size: 1em;
    font-weight: bolder;
    font-family: helvetica;
}

.register-form-paymentdetails-right-1{
    margin-top: 15px;
    font-size: 0.9em;
    font-weight: lighter;
}

.form-error{
    border-color: red;
}















