.register-container{
    display: flex;
    height: 100vh;
    width: 100%;
}

.register-container .image-section{
    flex: 1;
}

.register-container .image-section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-container .register-section{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}




.register-container .register-section .content{
    width: 70%;
    max-width: 600px;
}

.register-container .register-section .content button{
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.register-container .register-section img.company-logo{
    width: 150px;
    position: absolute;
    top: 80px;
    left: 100px;
}

.register-container .register-section .content form{
    margin-top: 4rem;
}

.register-container .register-section h1{
    color: var(--color-primary);
    font-size: 44px;
    margin-bottom: 0.5rem;
}

.register-container .register-section .information{
    display: flex;
    flex-direction: column;
}

.register-container .register-section .information input{
    border-radius: 2px;
    border: 1px solid #626262;
    height: 40px;
    padding: 0.4rem;
    background: transparent;
    margin-bottom: 1.3rem;
    flex: 1;
}

.register-container .register-section .information .two-inputs{
    display: flex;
    gap: 1rem;
}

.register-container .register-section p.register-link{
    color: #626262;
}

.register-container .register-section p.register-link a{
    text-decoration: underline;
}

.register-container .register-section p{
    color: #626262;
}

.link-button {
    background: none!important;
    border: none;
    padding: 0!important;
    /*optional:*/
    font-family: arial, sans-serif; /* Make it look like a link */
    color: #069;
    cursor: pointer;
    text-decoration: underline;
}

.link-button:hover {
    text-decoration: none; 
    color: #045;
}

/* The Modal  */
#forgotPasswordModal {
    display: none;
    position: absolute;
    z-index: 2000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.forgot-pass-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 2rem 1rem;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    /* width: 80px; */
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    border-radius: 5px;
    position: relative;
    /* min-width: 800px; */
}

/* The Close Button */
.close {
    width: 30px;
    height: 30px;
    position: relative;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.body-no-scroll {
    overflow: hidden;
}

#conf-email-input {
    border-radius: 2px;
    border: 1px solid #626262;
    height: 40px;
    width:100%;
    padding: 0.4rem;
    background: transparent;
    margin-bottom: 1.3rem;
}

#conf-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

  }



@media screen and (max-width: 850px){
    .register-container .image-section img{
        object-position: right;
    }

    .register-container .register-section img.company-logo{
        top: 50px;
        left: 50px;
    }

    .register-container .register-section .content{
        width: 90%;
    }
}

@media screen and (max-width: 600px){
    .image-section{
        display: none;
    }

    .register-container .register-section img.company-logo{
        left: 55px;
    }

    .register-container .register-section .content{
        width: 80%;
    }

    .register-container .register-section .information .two-inputs{
        flex-direction: column;
        gap: 0;
    }

    .register-container .register-section .information input{
        margin-bottom: 1rem;
    }

    .register-container .register-section .content form{
        margin-top: 3rem;
    }
}