body {
    background: #e9f2f7;
    color: #000;
    font-family: "Poppins", serif;
    font-weight: 400;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    background: #d3e6f5;
    position: fixed;
    top: -200px;
    left: -250px;
    height: 500px;
    width: 500px;
    border-radius: 50%;
}

body::after {
    content: "";
    background: #dbd9f1;
    position: fixed;
    bottom: -300px;
    right: -300px;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 768px) {
    body::before {
        top: -100px;
        left: -100px;
        height: 300px;
        width: 300px;
    }

    body::after {
        bottom: -100px;
        right: -100px;
        height: 300px;
        width: 300px;
    }
}

.logo {
    max-width: 200px;
    max-height: 100px;
    border-radius: 15px;
    transform: translateX(-50%);
    margin-left: 50%;
}

.custom-control-label {
    margin-bottom: 0;
    margin-top: 1px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card-signin {
    border: 0;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 1px 3px 50px #cacfee;
}

.card-signin .card-header {
    font-weight: 300;
    font-size: 1.5rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #ffffff;
}

.login-form-head {
    text-align: center;
    background: #ffffff;
    padding: 30px 15px;
    border-bottom: 1px solid #e8e8e8;
}

.login-form-head h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.card-signin .card-body {
    padding: 1rem 2rem;
}

.form-signin {
    width: 100%;
    text-align: center;
}

.form-signin .btn {
    font-size: 14px;
    padding: 12px 20px;
    transition: all 0.2s;
}

.form-signin .form-control {
    padding: 12px 20px;
    text-align: center;
    border-left: 1px solid #4f39f6;
    height: auto;
}

.form-signin .form-control:focus {
    border: 1px 1px 1px 2px;
    border-color: #4f39f6;
    box-shadow: none;
}

.form-signup {
    width: 100%;
}

.form-signup .btn {
    font-size: 14px;
    padding: 12px 20px;
    transition: all 0.2s;
}

.form-signup .form-control {
    padding: 12px 20px;
    height: auto;
    font-size: 14px;
    border-left: 1px solid #4f39f6;
}

.form-signup .form-control:focus {
    border: 1px solid #4f39f6;
    box-shadow: none;
}

select.form-control {
    padding: 12px 20px;
    height: 51px !important;
}

.custom-control-label:before {
    background: #cccccc;
    border-radius: 50% !important;
}

.custom-control {
    display: inline-block;
}

.btn-register {
    border: 1px solid #5e48f8;
    color: #5e48f8;
    transition: all 0.3s ease-in-out;
}

.btn-register:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #4f39f6, #8e79ff);
}

.btn-register:active,
.btn-register:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.alert-success {
    color: #363636;
    background-color: #d3ffdd;
    border-color: #2cba4d;
}

.btn-primary {
    color: #fff;

    background: linear-gradient(135deg, #4f39f6, #8e79ff);
    color: #FFF !important;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-link {
    font-weight: 400;
    color: #4f39f6;
    text-decoration: none;
}

.btn-link:hover {
    color: #4f39f6;
}

.text-primary {
    color: #4f39f6 !important;
}

.text-light {
    font-weight: 300;
}

.fs-14 {
    font-size: 14px;
}

.two-factor-alert {
    background: #fff;
    text-align: left;
    position: relative;
    font-size: 15px;
    width: 100%;
    margin: 0px auto 40px auto;
    padding: 14px 16px;
    text-align: left;
    border-radius: 0;
    border-width: 0 0 0 3px;
    border-style: solid;
    box-shadow: 0 8px 16px 0px rgba(10, 14, 29, 0.04),
        0px 8px 64px 0px rgba(10, 14, 29, 0.08);
    border-color: #4f39f6;
}

.gradient-text{
    background: linear-gradient(to right, #4f39f6, #e839f6, #4f39f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}