
.content-wrapper {
    background: url(../../../img/background-login.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: black !important;
}

*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.background {
    width: 430px;
    height: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.m-top {
    padding-bottom: 2.5rem;
}

.background .shape {
    height: 130px;
    width: 130px;
    position: absolute;
    border-radius: 50%;
}
.shape:first-child {
    background: linear-gradient(
        #fff,
        #70a6d8
    );
    left: -50px;
    top: -60px;
}
.shape:last-child {
    background: linear-gradient(
        to right,
        #70a6d8,
        #fff
    );
    right: -20px;
    bottom: 10px;
    z-index: 1
}
form {
    background-color: rgba(255,255,255,0.13);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 26px 27px 10px 27px;
}
form * {
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h2 {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

form h3 {
    font-size: 18px;
    text-align: center;
}

form .invalid-feedback {
    color: red;
    font-weight: bold;
}

label {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}
input {
    display: block;
    height: 48px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 0;
    font-size: 14px;
    font-weight: 300;
}
::placeholder {
    color: #e5e5e5;
}
button {
    margin-top: 40px;
    width: 100%;
    background-color: #065fc5;
    color: #fff;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 16px;
}

button:hover {
    background: #0e57ab;
    border-color: #0e57ab;
}