*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-decoration: none;
}

.container{
    height: 90vh;
    width: 100%;
    max-height: 100vh;
}

.photo{
    margin-top: 10vh;
    width: 100%;
    height: 45vh;
    background-image: url("4k\ image[1].jpg");
    background-size: cover;
}


.msg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#msghead{
    padding-top: 1%;
    padding-left: 25% ;
    align-self: flex-start;
}

#msgpara{
    padding: 1.1% 25% ;
}


.language-selection{
    display: flex;
    flex-direction: column;
    color: blue;
    cursor: pointer;
    
}

.language-selection input{
    color: blue;
    border-color: blue;
    cursor: pointer;
}

#languagebtn{
   padding: 1.1% 1.1%; 
   width: 20%;
   border-radius: 10px;
   background-color: #4f46e5;
   color: white;
   font-weight: 600;
   font-size: medium;
   
   
}

#languagebtn:hover{
    transform: scale(1.2) ;
    transition: all ease 0.5s;
    box-shadow:10px 8px 8px #4f46e5;
    cursor: pointer;
}





/* Login Page making */

.left{
    width: 50%;
    border-radius: 45%;
    border-top-left-radius: 0% ;
    border-bottom-left-radius: 0%;
    overflow: hidden;
    min-height: 100vh;
    object-fit: fill;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.rigth{
    width: 50%;
    height: 100%;
    padding-left: 10%;
    display: flex;
    justify-content: center;
    align-content: center;
    
}

.mainbox{
    height: 30%;
    width: 50%;
    display: grid;
    grid-template-columns: 130%;
    grid-template-rows: auto auto auto auto ;
    grid-template-areas: "logologin"
    "signinlogin"
    "ailogin"
    "infoloin";
    row-gap: 0.2%;
    text-align: center;
    padding-top: 15vh;
    padding-left: 10vw;
}

.logologin{
    font-size: 2.5rem;
}

.signinlogin{
    font-size: 1.7rem;
}

.ailogin{
    font-size: xx-large;
}






.input-field {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
.input-field:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.5);
}
.message-box {
            text-align: center;
            padding: 0.75rem;
            border-radius: 0.5rem;
}
.message-box-success {
            background-color: #d1fae5;
            color: #065f46;
}
.message-box-error {
            background-color: #fee2e2;
            color: #991b1b;
}
.hidden {
            display: none;
}


#logpass:focus{outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.5);
}

