* {
    padding:0;
    margin:0
}

body {
    font-family: 'Playfair Display', serif;
    font-family: 'Tektur', sans-serif;
    overflow:hidden;
}

.container-fluid{
    max-width: 100%;
    padding:0;
}
.background-image-menu{
    position:absolute;
    width:100%;
    height: 100%;
    left: 0;
    min-width: 1920px;
    min-height: 1080px;
}
.right-side {
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    max-width: 45%;
    min-height: 100%;
    background-color: #ffffffb0;
    padding: 2rem;
  }

.div-buttons button{
    margin: 1rem;
}

#login-form {
    position: absolute;
    padding-top: 2rem;
}
#sign-up-form{
    position: absolute;
    padding-top: 2rem;
}
.inside{
    /*background-color:rgba(56, 114, 128, 0.521);*/
    width: 100%;
}
.inside p{
    padding-top: 1rem;
    padding-right: 0.5rem;
    padding-left: 0.2rem;
    display: flex;
    justify-content: space-between;
}
.inside input{
    background-color : #ffffffb0;
    border: none;
    box-shadow: none;
}

.inside label{
    padding-right: 0.2rem;
}

.alert-danger{
    display: block;
    width:auto;
}

.btn-success {
    --bs-btn-bg: #c17087;
    --bs-btn-color: #000;
    --bs-btn-border-width: 0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #9e5d6f;
    --bs-btn-active-color: #000000;
    --bs-btn-active-bg:  #9e5d6f;
}

.hidden{
    visibility: hidden; 
}

@media only screen and (max-width: 768px) {
    .right-side {
        position: absolute;
        display: flex;
        flex-direction:column;
        align-content: center;
        width: 100%;
        max-width: none; 
        padding: 1rem;
        min-height: auto;
        z-index: 1;
    }
    .background-image-menu {
        position: fixed;
        max-width:fit-content;
        width: 1920px;
        height: 1080px;
        left: -860px;
    } 
    #login-form {
        position: static;
    }
    #sign-up-form{
        position: static;
    }
    .hidden{
        display: none;
    }
}