body {
    background: var(--grey-light);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
}

.login-wrapper {    
    display: flex;
    height: 100vh;
}

.login {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.login h1 {
    margin-bottom: 20px;
    color: var(--blue-primary);
    font-size: 30px;
    font-weight: 750;
}

.login button {
    background: var(--green-primary);
    color: var(--white);
    border: none;
    padding: 7.5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
    font-weight: 600;
}   

.knopie {
    display: flex;
    align-items: center;
    justify-content: center;
}

.knopie p {
    display: inline;
    align-items: center;
}  

.knopie img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}   

.login button:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
}

.photo {
    width: 75%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-bg);
}

.photo img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.logo {
    top: 5%;
    left: 5%;
}

@media (max-width: 1250px) {
    .login-wrapper {
        position: relative;
    }
    
    .login {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 55%;
        height: 45%;
        z-index: 10;
        border-radius: 10px;
    }

    .photo {
        width: 100%;
        height: 100%;
    }
}
