*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    background-image: url("./assert/zeiss-visufit-1000.jpg");
    background-size: cover;

}
body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(54, 52, 52, 0.4);
    z-index: -5;
}
.logo{
    background-color: blur(255, 255, 255, 255);
    align-items: center;
    display: flex;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 20px;
    z-index: 11111;
}

.logo span{
    font-size: 24px;
    font-weight: bolder;
    color: #1a1a1a;
    height: 100%;

}
.container{
    width: 75%;
    height: 550px;
    margin: 100px auto;
    padding: 20px;

    border-radius: 8px;
    z-index: 11111;
    display: flex;
}
.container .left {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;

}
.container .right {
    width: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: blur(255, 255, 255, 255);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        z-index: 11111;
    
}
.container .right form {
    width: 95%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;

}
.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.container .right form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.container .right form button {
    width: 100%;
    padding: 10px;
    background-color: #4f5050;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.tr{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
.check{

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 40%;
}
 p{
    font-size: 14px;
    color: #333;
    width: 80%;

}
.app{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.app a{
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    border-radius: 4px;
    width: 40%;
    text-align: center;
    background-color: #d5dbe2;
}
@media (max-width:768px){
    .container .right{
        width:auto;

    }
    .or{
        display: none;
    }
}