 /* Complete CSS styles as provided */
 * , body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: auto;
}
.login {
    display: none;
}
header {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    display: flex;
    padding-top: 10px;
}
.header-container {
    width: 73%;
    display: flex;
    justify-content: space-between;
    margin: auto;
}
.nav {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.nav p {
    font-size: 14px;
    color: rgb(87, 65, 65);
    cursor: pointer;
    transition: .2s;
}
.nav p:hover {
    color: rgb(66, 66, 211);
}
main {
    width: 100%;
    height: 100vh;
    background-image: url('../images/background2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.background {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card {
    width: 72%;
    height: 400px;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-image: url('../images/chinesse.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
form {
    height: 90%;
    width: 40%;
    background-color: rgb(223, 228, 228);
    padding: 5px;
    padding-top: 20px;
    margin-right: 36px;
    border-radius: 5px;
    overflow: hidden;
}
.inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}
.input-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.label {
    width: 25%;
    font-size: 14px;
}
.input-box input {
    width: 64%;
    height: 30px;
    padding: 10px;
    border: rgb(62, 115, 136) 2px solid;
    background-color: rgb(204, 204, 233);
}
.check {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding: 5px;
}
.checkbox {
    display: flex;
    gap: 5px;
    margin-left: 12px;
}
.checkbox p {
    font-size: 14px;
}
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.buttons button {
    width: 34%;
    padding: 8px;
    border-radius: 20px;
    background-color: rgb(39, 102, 219);
    border: none;
    color: white;
}
.icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}
.icons::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(107, 101, 101), transparent);
}
.icons span {
    width: 26px;
    height: 26px;
    background-color: rgb(39, 102, 219);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons .icon2 {
    background-color: green;
}
.icons span svg {
    color: white;
}
.forgot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.text {
    display: flex;
    justify-content: start;
    gap: 30px;
}
.text p {
    font-size: 14px;
    cursor: pointer;
}
.download {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}
.download span {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download span svg {
    color: white;
}
.download p {
    font-size: 14px;
    color: rgb(39, 102, 219);
    cursor: pointer;
}
.download button {
    width: 100px;
    padding: 5px;
    border-radius: 20px;
    border: rgb(39, 102, 219) 2px solid;
}
.errormsg{
    display: none;
    color: red;
    font-size: 14px;
}
.errordiv{
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px){
    .checkbox  input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    .checkbox{
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .checkbox.checkmark {
        width: 20px;
        height: 20px;
        background-color: #eee; /* Unchecked background color */
        border: 2px solid #ccc; /* Border around the checkbox */
        border-radius: 4px; /* Optional: Rounded corners */
        margin-right: 8px;
        position: relative;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }
    
    .login {
    display: block;
    margin-left: 40px;
    margin-top: 10px;
    margin-top: 30px;
    font-weight: 700;
    font-size: 16px;
    }
    .login p{
        font-weight: 800;
    font-size: 16px;
    }
    .logo{
        width: 40%;
        padding-left: 20px;
    }
    .nav{
    display: none;
    }
    .background{
    width: 100%;
    }
    .card{
        width: 100%;
        height: 100%;
        background-image: none;
    }
    main{
        background-image: none;
    }
    header{
        padding: 5;
    }
    .header-container{
        width: 100%;
    }
    form{
        height: 100%;
        width: 100%;
        background-color: rgb(255, 255, 255);
        padding: 20px;
        margin-right: 0;
    }
    
    .label{
        display: none;
    }
    .inputs{
        width: 100%;
        margin-bottom: 50px;
    }
    .inputs input{
        width: 100%;
        height: 50px;
        border: none;
        border-bottom: 1px solid black;
        background-color: white;
    }
    
    .icons{
        display: none;
    }
    
    .download button{
        margin-bottom: 10px;
    }
    .buttons button{
        width: 100%;
    }
    
}