

.main-container-1{
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}


.container-1{
    background-image: url(../assests/login-signup-image/loginImage.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 0px 270px 60px black;
}

.login-container-1{
    width: 300px;
    height: 400px;
    /* border: 2px solid #2ecc71; */
    border-radius: 5px;
    display: flex;
    justify-content: center;
    background-image: url(../assests/login-signup-image/boxImage.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0px 0px 70px 80px black;
}

.logo-1{
    width: 180px;
    margin-top: 30px;
}

.fill-detail-1{
    text-align: center;
    /* border: 1px solid red; */
}

.details-1{
    margin-top: 40px;
    padding: 10px;
}

.username-1,.password-1{
    padding: 8px 18px;
    border-radius: 5px;
    border: none;
    margin-top: 15px;
}

.lgn-btn-1{
    padding: 7px 70px;
    background-color: transparent;
    color: white;
    margin-top: 10px;
    font-size: 20px;
    border: 0.2px solid green;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
}

.lgn-btn-1:hover{
    transform: scale(1.05);
}

.lgn-error{
    color: red;
    display: none;
}