* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Public Sans", sans-serif;
}

body {

    display: flex;
    background-color: var(--body);
    
    
    padding:30px;
}
@media only screen and (max-width:600px){
    .Login{
        min-width: 350px !important;
        width:350px !important;
    }
}

.Login {
    min-width: 400px;
    width:450px;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--select);
    background-color:var(--body);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.Login img {
    width: 50%;
    height: 70px;
    margin: 15px auto;
    object-fit: contain;

}

.form_box {
    display: flex;
    flex-direction: column;
    margin: 10px 0;

}

.afich {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px !important;
    font-weight: 500;
    margin: 20px 0 !important;
    padding: 0 !important;
    height: auto !important;
    color: var(--white);
}




.form_box label {
    margin: 5px 0;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.form_box input {
    height: 40px;
    background-color: transparent;
    border: .5px solid var(--select);
    margin: 5px 0;
    border-radius: 5px;
    outline: none;
    color: var(--child1);
    font-size: 15px;
    font-weight: 500;
    padding-left: 10px;
}

.form_box input:focus {
    border: 1px solid rgb(0, 89, 255);
}
.chiko {
    appearance: none;
    width: 20px !important;
    height: 20px !important;
    
    border: .5px solid var(--child1) !important;
    background-color: transparent;
    position: relative;
    border-radius: 5px !important;
    cursor: pointer;
}

.chiko::after {
    content: '✓';
    color: var(--white);
    opacity: 0;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 14px;
}

.chiko:checked::after {
    opacity: 1;
}

.chiko:checked {
    border: 1px solid var(--white) !important;

}

.Login button {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    outline: none;
    border: 0;
    background-color: var(--red);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
}

.all_add_user {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;

}