* {
    box-sizing: content-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

.container{
    display: grid;
    padding: 20px;
    grid-template-columns: 1fr 1fr;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form .form-input {
    width: 400px;
}

.art-holder{
    height: calc(100vh - 40px)
}

.art-holder img {
    max-height: calc(100vh - 40px);

}

.email-type {
    display: flex;
    flex-direction: column;
}

.password-type {
    display: flex;
    flex-direction: column;
}

.password-type a {
    text-decoration: none;
    color: aqua;
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.sign-in {
    background-color: #295971;  
    color: white;                
    border: none;                
    padding: 12px 40px;          
    font-size: 19px;             
    border-radius: 8px; 
    width: 300px;
}

.sign-in:hover {
    background-color: #0f1f28; 
}

.sign-in p {
    display: flex;
    justify-content: center;
}


.social-google {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: #f5fafc; 
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    border-radius: 8px;
    font-size: 19px;
    color: rgb(39, 66, 184);
    width: 300px;
    height: 30px;
}

.social-google img{
    width: 24px;
    height: 24px;
}

.social-facebook {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: #f5fafc; 
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    border-radius: 8px;
    font-size: 19px;
    color: rgb(39, 66, 184);
    width: 300px;
    height: 30px;
}

.social-facebook img {
    width: 24px;
    height: 24px;
}

.password-type a:hover {
    color: #295971;
}
