body {
    font-family: Arial, sans-serif;
    background: url('/images/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo4 {
    border-radius: 6px;
    height: 75px;
}

.login-face-container {
    background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    border-radius: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 590px;
    width: 550px;
    box-sizing: border-box;
}
.adminFacelogo{
    background: rgba(102, 111, 121, 0.8);
}
.login-face-header { 
    text-align: center;
    margin-bottom: 20px;
    padding: 40px;
    border-radius: 17px 17px 0 0;
}

.login-face-header img {
    width: 100px;
}

.face-form {
    display: flex;
    flex-direction: column;
    margin: 50px;
}

.face-group {
    margin-bottom: 35px;
    position: relative;
}

input[type="text"]::placeholder {
    font-size: 15px; /* Adjust the size as needed */
}
input[type="email"]::placeholder {
    font-size: 15px; /* Adjust the size as needed */
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#email, #phone {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.capture-button button {
    background-color: rgba(220, 224, 227, 0.8);
    color: #000;
    padding: 8px 14px;
    border-color: #088395;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    align-self: center;
}

.capture-button button:hover {
    background-color: #f0f8ff;
}

#video {
    width: 120px;
    height: 120px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

#canvas {
    display: none;
}

#captured-image{
    display:none; 
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #ddd; 
    margin-left: 50px;
}
.camera-container{
    display:flex;
}

#submit-btn {
    background-color: #007bff;
    color: white;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    height: 45px;
    width: 100px;
    align-self: center;
}

#submit-btn:hover {
    background-color: #0056b3;
}

.faced a {
    display: flex;
    margin: -43px 0 0 212px;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    height: 45px;
    width: 125px;
}

.faced a:hover {
    color: red;
    text-decoration: underline;
}


@media screen and (min-width: 768px) and (max-width: 1340px){
    body {
        font-family: Arial, sans-serif;
        background: url('/images/background.png') no-repeat center center fixed;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 87vh;
        margin: -2px;
    }
    #email, #phone {
        width: 100%;
        padding: 4px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }
     #email::placeholder, #phone::placeholder{
        font-size: 18px;
    }
    
}    
    