﻿
.loginbody {
    overflow: hidden;
    background-color: black;
}

.Checkbtn {
    position: relative;
    bottom: 150px;
    left: 550px;
    width: 100px;
    height: 50px;
    background-color: #d2d2d2;
    border-radius: 200px;
    cursor: pointer;
    transition: 0.2s;
}
.Checkbtn::before{ 
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    border-radius: 200px;
    margin: 2.5px;
    transition: 0.2s;
}

.Container {
    height: 100vh;
    background-color: transparent;
    color: white;
    padding: 30px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    background: black;
    width: 100%;
}

.Container h1 {
    margin-top: 40px;
    font-size: 40px;
    text-align: center;
}

.Container .input-box {
    width: 100%;
    height: 50px;
    margin: 30px 0;
    position: relative;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 55px 20px 20px;
}

.input-box input::placeholder {
    color: white;
    font-size: 16px;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.Container .remember-forgot  {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: white;
    margin-right: 3px;
}
.remember-forgot label input:checked {
    accent-color: white;
    margin-right: 3px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

.remember-forgot a {
    color: white;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.Container .btn {
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
}
.Container .btn:hover {
    width: 100%;
    height: 45px;
    background-color: white;
    border: 2px solid rgba(255, 255, 255, .5);
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.Container .register-link {
    font-size: 17px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 800px) {
    .Container {
        max-width: 700px;
        margin: 0 auto;
    }
}

.highlight-body {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.highlight-container {
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    color: white;
    border-radius: 20px;
    padding: 30px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}