*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body{
    background-color: #080710;
}

.background{
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.background .shape{
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}

.shape:first-child{
    background: linear-gradient(#1845ad,#23a2f6);
    left: -80px;
    top: -80px;
}

.shape:last-child{
    background: linear-gradient(to right,#ff512f,#f09819);
    right: -30px;
    bottom: -80px;
}

form {
    height: auto;
    width: 400px;
    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.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}

form *{
    font-family: 'Poppins',sans-serif;
    color: #fff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

form h3.signup{
    background-color: rgba(255, 255, 255, 0.1);
    color: #f44336;
    border-inline-end: 1rem solid #f44336;
    border-inline-start: 1rem solid #f44336;
    writing-mode: horizontal-tb;
    direction: rtl;
    margin-bottom: 50px;
}

form h3.login{
    background-color: rgba(255, 255, 255, 0.1);
    color: #04AA6D;
    border-inline-end: 1rem solid #04AA6D;
    border-inline-start: 1rem solid #04AA6D;
    writing-mode: horizontal-tb;
    direction: rtl;
    margin-bottom: 50px;
}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

input, select {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 300;
}

.tooltip {
    display: block;
    height: 50px;
    width: 100%;
    /* background-color: rgba(255,255,255,0.07); */
    border-radius: 3px;
    /* padding: 0 10px; */
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 300;
}

option {
    color: rgb(0, 0, 0);
}

::placeholder{
    color: #e5e5e5;
}

button{
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.register{
    margin-top: 10px;
    display: flex;
}

.register div{
    background: #f44336;
    width: 150px;
    border-radius: 3px;
    padding: 5px 10px 10px 5px;
    background-color: rgba(255,255,255,0.27);
    color: #eaf0fb;
    text-align: center;
}

.register div:hover{
    background-color: rgba(255,255,255,0.47);
}

.register .fb{
    margin-left: 25px;
}

.regt a{
    margin-right: 4px;
    text-decoration: none;
}

btn {color: #fff; border: none; cursor: pointer;}
.success {background-color: #04AA6D;} /* Green */
.success:hover {background-color: #46a049;}

.danger {background-color: #f44336;} /* Red */
.danger:hover {background: #da190b;}

.message {
    background-color: #f44336;
    padding: 5px;
    color: #e5e5e5;
    margin-bottom: 10px;
    text-align: center;
    animation: blink 1s 5, hideMessage 5s 10s forwards;
    font-family: 'poppins',sans-serif;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes hideMessage {
    to {
        opacity: 0;
        display: none;
    }
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: rgb(62, 62, 62);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
    font-size: 12px;
    font-style: italic;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent rgb(62, 62, 62) transparent transparent;
}

.tooltip.focus .tooltiptext {
    visibility: visible;
}

.container {
    display: flex;
    justify-content: space-between;
}

.form-container {
    width: 60%;
}

.info-container {
    width: 35%;
    padding: 0 20px;
    margin-top: 5%;
}

.info {
    background-color: #e0e0e0;
    padding: 10px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.info.active {
    display: block;
}