* {
    margin: 0px;
    padding: 0px;
}

.container {
    width: 80%;
    height: 700px;
    display: flex;
    margin: auto;

}

.box1 {
    text-align: center;
    border-radius: 20px;
    height: 400px;
    width: 50%;
    background-color: #F6F1F1;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 150px;
    margin-left: 100px;
}

 
.login {
    margin-top: 30px;
    font-size: 30px;
    text-align: center;
     
}

.logintext {
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
   
}

.input {
    margin-top: 30px;
    height: 50px;
    width: 70%;
    background-color: #F6F1F1;
    border: none;
    border-color: #dedede;
    overflow: hidden;
    font-size: 18px;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}


.submit {
    height: 50px;
    width: 60%;
    margin-top: 30px;
    font-size: 18px;
    /* background-color: #F6F1F1; */
    background: #032cfc;
    color: aliceblue;
    border: none;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.input::placeholder {
    color: black;
}

.cgec-img {
    width: 35%;
}

.cgec-logo01 {
    width: 100%;
    height: 400px;
    margin-top: 150px;
    /* margin-left: 100px; */
}

/* Responsive Design */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .cgec-logo01{
        height: 400px;
    }
    .container{
        flex-direction: column;
       width: 95%;
        align-items: center;
        justify-content: center;
    }
    .input{
        width: 90%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .container{
        flex-direction: column;
        width: 100%;
    }
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
    .container{
        flex-direction: column;
        width: 80%;
        align-items: center;
        justify-content: center;
    }
    .cgec-img{
        width: 80%;
    }
    .box1{
        width: 95%;
        margin-top: 0px ;
        margin-left: 0px;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}
