@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    background-image: url('../images/jan-breydel.jpg') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

h1, h2, h4, h5 {
    font-weight: 600 !important;
    margin: 1rem 0 !important;
    padding: 0 !important;
}
h1 {
    font-size: 5rem !important;
    color: #ffffff;
}
h2 {
    font-size: 3rem !important;
    color: #cccccc;
}

a {
    text-decoration: none !important;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    color:#ffffff !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.65);
}

.row {
    width: 100%;
    margin: 0;
    padding: 0;
}

.logo-row {
    position: absolute;
}

.logo {
    width: 100px;
    margin: 1rem 0;
}

.content-row {
    position: absolute;
    top: 50%;
    transform : translateY(-50%);
    display: table;
    width: 100%;
    margin: auto 0;
    padding: 0;
}

.col {
    padding: 0 5rem !important;
}

.col-content {
    position: absolute;
    top: 50%;
    transform : translateY(-50%);
}

.form-content {
    background-color: #ffffff;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.form-content form {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    align-content: center;
}

form .row {
    width: 100%;
    margin: 0;
    padding: 0;
}

.form-content form input {
    width: 100%;
    padding: 1rem;
    margin: 1rem auto !important;
    border: 1px solid #000000;
    border-radius: 0.5rem;
}

.form-content form input:focus {
    outline: none;
}

.button {
    width: 100%;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border: none;
    border-radius: 0.5rem;
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}

.redirect-button {
    width: fit-content !important;
}

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

.company-row,
.individual-row  {
    display: none !important;
}

.entity {
    display: inline-flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.entity .entity-option {
    border: #000000 2px solid;
    border-radius: 0.5rem;
    width: 45%;
    padding: 0.5rem 0;
    margin: 1rem 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.entity .entity-option:hover {
    background-color: #000000;
    color: #ffffff;
}

.entity .entity-option-selected {
    background-color: #000000;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .col {
        padding: 0 2rem !important;
    }
    .form-content {
        padding: 2rem 0;
    }
    .form-content form {
        max-width: 100%;
    }
    .entity {
        flex-direction: column;
    }
    .entity .entity-option {
        width: 100%;
    }
}