*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../img/b.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.content_wrapper {
    width: 420px;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid rgb(255,255,255,.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,0,0, 0.2);
    color: #fff;
    padding: 30px 40px;
}


.form__wrapper {
    width: 420px;
    background-color: transparent;
    border-radius: 10px;
    /* border-bottom-right-radius: 10px; */
    border: 2px solid rgb(255,255,255,.2);
    /* border-top: none; */
    backdrop-filter: blur(10px);
    /* display: flex; */
    box-shadow: 0 0 10px rgba(0,0,0, 0.2);
    color: #fff;
    padding: 30px 40px;
   
    
}
.login-form,
.registration-form {
    display: none;
    
}

.login-form.active,
.registration-form.active {
    
    display: block;
   
    
    
}
.tab-buttons {
    display: flex;
    margin-bottom: 0;
}
.tab-btn {
    width: 50%;
    height: 60px;
    outline: none;
    border: none;
    background-color: transparent;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid rgb(255,255,255,.2);
    border-bottom: none;
} 
.tab-btn:nth-child(1){
    border-top-left-radius: 10px;
    border-right: none;
}
.tab-btn:nth-child(2){
    border-top-right-radius: 10px;
} 
.tab-btn:hover {
    background-color: rgba(0,0,0, 0.1);
}  
.login-form__title {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 36px;
    text-align: center;
}
.login-form__input-box {
    width: 100%;
    height: 50px;
    margin: 30px 0;
   
}
.login-form__input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgb(255,255,255,.2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}
.login-form__input-box input::placeholder{
    color: #fff;
}
.remember {
    margin: -15px 0 15px;
    text-align: right;
}
.remember label input {
    accent-color: #fff;
    margin-right: 3px;
}
.remember a {
    color: #fff;
    text-decoration: none;
    
}

.remember a:hover {
    text-decoration: underline;
}
.btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10 rgb(0,0,0,.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.register-link, .back {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}
.back a {
    display: inline-block;
    padding-left: 40px;
    position: relative;
}
.back a::before {
    position: absolute;
    content: '';
    width: 32px;
    height: 32px;
    top: -6px;
    left: 0;
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
}
.register-link a, .back a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover, .back a:hover {
    text-decoration: underline;
    color: #040202;
}
