﻿:root {
    --color-primary: #38AB7F;
    --color-secondary: #222;
}

* {
    box-sizing: border-box;
    outline: none;
    font-family: Calibri;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:visited, input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

html,
body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 100%;
    color: #222;
    /* background-color: #ffffff; */
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at bottom right, #31a881, #ffff 15%);
}

a,
a:focus,
a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

    a:hover {
        text-decoration: underline;
    }

span {
    color: var(--color-secondary);
}

h3 {
    margin-bottom: 0.7rem;
}

.circle {
    position: absolute;
    background: -moz-linear-gradient(top, #24a486 0%, #33a981 100%);
    background: -webkit-linear-gradient(top, #24a486 0%, #33a981 100%);
    background: linear-gradient(to bottom, #24a486 0%, #33a981 100%);
    width: 700px;
    height: 480px;
    border-radius: 50%;
    transform: rotate(-30deg);
    top: -150px;
    left: -200px;
}

.container {
    width: 100%;
    height: 100%;
}

.main {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-start;
}

.signup,
.signin {
    width: 100%;
    height: 100%;
}

.signup {
    position: relative;
    padding: 8rem 0rem 5rem 6rem;
}

.signin {
    display: flex;
    align-items: center;
    justify-content: start;
}

.card {
    background-color: #fafafa;
    padding: 1.5rem;
    max-width: 520px;
    max-height: 630px;
    border-radius: 0px;
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.2);
    min-width: 270px;
}

    .card:hover {
        box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
    }

.logo {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    box-shadow: 1px 2px 2px 2px rgba(155, 155, 155, 0.3);
}

    .logo img {
        width: 200px;
        /*height: 120px;*/
    }

.footer {
    display: block;
    margin-top: 3rem;
}

.register {
    position: absolute;
    left: 8rem;
    bottom: 3rem;
}

    .register a {
        font-weight: bold;
    }

form {
    display: block;
    margin-top: 0em;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

    .form-group label {
        font-weight: 400;
        display: block;
        font-size: 16px;
        color: #282828;
        margin-bottom: 8px;
    }

.form-control {
    font-size: 14px;
    color: #282828;
    border-radius: 3px;
    box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid #bbb;
    padding: 5px 8px;
    display: block;
    width: 100%;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
}

    .form-control:focus,
    .form-control:hover {
        outline: 0 none;
        -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.075);
        -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.075);
        box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.075);
        border-color: var(--color-primary);
    }

.forgot-password {
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #fff !important;
    background-color: #38ab7f;
    background-color: var(--color-primary);
    height: 40px;
    margin-top: 1rem;
    width: 50%;
}

.footer img {
    width: 50%;
    height: 3rem;
    box-shadow: 0px 0px 3px 1px rgba(155, 155, 155, 0.5);
}

@media (max-width:900px) {
    .signin {
        justify-content: center;
    }

    .signup {
        display: none;
        padding: 0px;
    }

    .logo {
        display: none;
    }

    .circle {
        width: 400px;
        height: 250px;
        border-radius: 50%;
        transform: rotate(-30deg);
        top: -50px;
        left: -100px;
    }

    .register {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        text-align: center;
        margin: 3px auto;
    }

        .register h3 {
            margin-top: 0;
            margin-bottom: 0.3rem;
        }
}

.error {
    color: red !important;
}

.dialog-back, .dialog-forget {
    display: none;
}

.ladda-label {
    color: #FFF !important;
}

#frmRegister .form-group {
    margin-bottom: 10px !important;
}

@media (min-width:1366px) {
    .circle {
        width: 800px;
        height: 550px;
        border-radius: 50%;
        transform: rotate(-30deg);
        top: -170px;
        left: -260px;
    }

    .signup {
        padding: 8rem 0rem 5rem 6rem;
    }

    .logo {
        width: 350px;
        height: 350px;
    }

    .signin {
        justify-content: center;
    }

    .register a {
        font-size: 1.3rem;
    }

    .register h3 {
        font-size: 1.6rem;
    }
}







.fa-user {
    padding: 10px;
    border: 1px solid #ced4da;
}

.input-group {
    /*border: 1px solid #ced4da;*/
    width: 100%;
}

.pay-card {
    min-width: 450px !important;
}

    .pay-card input, select, textarea {
        max-width: 100% !important;
    }

.container {
    max-width: 100% !important;
}

.pay-terms {
    position: absolute !important;
    display: flex !important;
    /*margin-top: 260px;*/
    bottom: 50px;
    min-width: 450px !important;
}

    .pay-terms > div:not(:last-child) {
        border-right: 2px solid #ced4da;
    }

.reqalert {
    color: red !important;
    font-size: 15px;
    margin-left: 4px;
}
