*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; 
    overflow: hidden;
}

.main{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: 90%;
    max-height: 80%;
    max-width: 90%;
    margin: 0 10%;
}

.big-img-container {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.side-container {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #e6f4e6, #ffffff);
    border-radius: 20px;
}

.big-img {
    max-width: 100%; 
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.side-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    width: 100%;
    height: auto;
}

.side-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: auto;

    margin: 0 auto;
    padding: 20px;
}

.login-form {
    padding-top: 10px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input-box {
    width: 100%;
    margin-bottom: 10px;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 16px;
    border: 1px solid black;
    border-radius: 5px;
    box-sizing: border-box; 
}

.form-label {
    background-color: #cdf2cd;
    font-weight: bold;  
    color: #43a421;
    font-size: 15px;
    margin-top: 5px;
}

.login-submit-btn-container {
    display: flex;
    width: 40%;
}

.login-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-submit-btn {
    
    height: 55px;
    padding: 2px 5px;
    background-color: #43a421;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    margin-top: 10px;
    /* margin-left: 70px; */
}

.login-submit-btn:hover,
.sign-up-btn:hover {
    scale: 1.025;
}

.side-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: auto;
}

.no-account {
    font-weight: bold;
}

.sign-up-btn {
    margin-top: 10px;
}

@media (max-width: 1300px) {
    .container{
        margin: 0 5%;
    }
}   

@media (max-width: 1050px) {
    .big-img-container{
        display: none;
    }
}