:root {
    font-family: sans-serif;   

    --lightblue: #aae1ff;
    --blue-menu: #30a6e6;
}

body {
    background-color: var(--blue-menu);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    padding-top: 8vh;

}

.container {
    background-color: white;
    top: 100px;
    border-radius: 5px;
    width: 80vw;
    height: 80vh;

    display: flex;
    flex-direction: row;
}

#left-book-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.left-img, .login-section {
    width: 50%;
}

.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 80px;
}



#login-form {
    
    display: flex;
    flex-direction: column;
    gap: 5px;
    
}
/*
.label-input-div {
    gap: 10px;
}
*/
#username, #password {
    width: 400px;
    height: 30px;;
    font-size: 20px;
    margin-bottom: 20px;
}


.login-section h1 {
    font-size: 30px;
    color: var(--blue-menu);
}

label {
    font-size: 20px;
}

input {
    height: 30px;;
    font-size: 20px;
}


.round-btn {
    
    background-color: var(--blue-menu);
    color: #FFFFFF;
    width: 400px;
    height: 45px;

    font-size: 20px; 
    line-height: 16px; 
    padding: 6px; 
    margin-bottom: 20px;
    border-radius: 30px; 
    border: #30a6e6;

    font-weight: bold; 
    text-transform: none; 
    
}







