@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600&display=swap");
body {
    font-family: "Prompt", sans-serif;
    color: #1a3f58;
}

h2 {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.2rem;
    color: #686868;
}

* :focus,
a:hover,
a:focus,
button:hover,
button:focus {
    outline: none;
    text-decoration: none;
}

.purple-bg {
    background: rgb(49, 47, 175);
    background: -moz-linear-gradient(
        45deg,
        rgb(49, 47, 175) 0%,
        rgb(234, 75, 136) 100%
    );
    background: -webkit-linear-gradient(
        45deg,
        rgb(49, 47, 175) 0%,
        rgb(234, 75, 136) 100%
    );
    background: linear-gradient(
        45deg,
        rgb(49, 47, 175) 0%,
        rgb(234, 75, 136) 100%
    );
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#312faf', endColorstr='#ea4b88', GradientType=1);
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.border-box {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.border-box-absolute {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.border-box ul {
    padding: 0;
    text-align: center;
    margin: 1em 0;
}

.border-box ul li {
    list-style-type: none;
    display: inline-block;
    padding: 0 1em;
}

.border-box ul li a {
    color: #686868;
    font-size: 1.2em;
    position: relative;
}

.border-box ul li a.active {
    color: #414141;
}

.border-box ul li a.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #6f43d6;
}

.email-icon {
    background: #fff url(../images/login/Email.png) no-repeat 0.5em center;
    background-size: auto 50%;
    padding-left: 2em;
}

.password-icon {
    background: #fff url(../images/login/Lock.png) no-repeat 0.6em center;
    background-size: auto 45%;
    padding-left: 2em;
}

.btn-submit,
.btn-submit:hover,
.btn-submit:focus {
    background: #6f43d6;
    color: #fff;
    outline: none;
    box-shadow: none;
    width: 100%;
}

.btn-facebook,
.btn-facebook:hover,
.btn-facebook:focus {
    background: #1877f2;
    color: #fff;
    outline: none;
    box-shadow: none;
    width: 100%;
}

.btn-facebook span {
    background: url(../images/login/Facebook.png) no-repeat left center;
    background-size: auto 80%;
    padding: 0 0 0 2em;
    display: inline-block;
}

.forgot {
    color: #5e54cf;
}

.forgot:hover {
    color: #5e54cf;
    text-decoration: underline;
}

.border-box small {
    font-size: 70%;
}

.border-box .smaller {
    font-size: 0.9em;
}

.text-purple {
    color: #a54ec3;
}

/* Extra small devices (portrait phones, less than 576px)*/

@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, 576px and up)*/

@media (min-width: 576px) and (max-width: 767.98px) {
}

/* Medium devices (tablets, 768px and up)*/

@media (min-width: 768px) and (max-width: 991.98px) {
}

/* Large devices (desktops, 992px and up)*/

@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Extra large devices (large desktops, 1200px and up)*/

@media (min-width: 1200px) {
}
