﻿*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(to bottom right, #02817f, #c78706);
    background-color: #2a3042;
}

.background {
    width: 28rem;
    height: 28rem;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

    .background .shape {
        height: 40%;
        width: 40%;
        position: absolute;
        border-radius: 50%;
    }

.shape:first-child {
    background: linear-gradient( #1845ad, #23a2f6 );
    left: -10%;
    top: -10%;
}

.shape:last-child {
    background: linear-gradient( to right, #ff512f, #f09819 );
    right: -10%;
    bottom: -10%;
}

form {
    height: 30rem;
    width: 21.5rem;
    background-color: rgba(255,255,255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0%);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 3.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    form * {
        font-family: 'Poppins',sans-serif;
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.5px;
        outline: none;
        border: none;
    }

    form h3 {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.5rem;
        text-align: center;
    }
.form-control{
    font-weight: 500;
}
label {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

input {
    display: block;
    height: 2.6rem;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}

::placeholder {
    color: #e5e5e5;
}

button {
    margin-top: 50px;
    width: 100%;
    background-color: #2a3042;
    color: #fff;
    padding: 6px 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}
button#btnlogin:hover {
    background-color: #fff;
    color: #2a3042;
}
.loadingBtn {
    display: none;
    margin-top: 0px;
    background-color: #fff;
    color: #2a3042;
}
.loadingBtn i{
    color: #fff;
}
a:hover {
    color: #2a3042;
}
.form-check-input:checked {
    background-color: #2a3042;
    border-color: #2a3042;
}
.social {
    margin-top: 30px;
    display: flex;
}

    .social div {
        background: red;
        width: 150px;
        border-radius: 3px;
        padding: 5px 10px 10px 5px;
        background-color: rgba(255,255,255,0.27);
        color: #eaf0fb;
        text-align: center;
    }

        .social div:hover {
            background-color: rgba(255,255,255,0.47);
        }

    .social .fb {
        margin-left: 25px;
    }

    .social i {
        margin-right: 4px;
    }
.footerTwo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    font-size: 16px;
    color: #fff;
    background-color: #0000002b;
    backdrop-filter: blur(1px);
    padding: 2px 28px;


}
p > a {
    color: #2a3042;
}
p > a:hover {
    color: #fff;
}
@media only screen and (max-width: 425px) {
    .background {
        width: unset;
        height: unset;
        position: unset;
        transform: unset;
        left: unset;
        top: unset;
    }
}
