﻿.modal-login-before {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-login-before > .log-info > .log-info-container {
    top: 0px;
    height: 100%;
    max-height: 90vh;
    overflow: auto;
}

.log-hero {
    min-height: 100vh;
    width: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr;
}

.log-img {
    width: 100%;
    height: 100%;
    max-height: 40vh;
    min-height: 320px;
    position: relative;
    & img

{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

    .log-overlay{
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }
    
}

.log-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.log-info-container {
}

.log-info-container {
    padding: 40px;
    background-color: white;
    position: relative;
    top: -130px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.small-padding {
    margin-top: 120px;
}

.big-padding {
    margin-top: 222px;
    padding-bottom: 70px;
}

.log-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.log-container {
    border-bottom: 1px solid rgba(227, 227, 227, 1);
}

.button-log {
    width: 100%;
    text-align: center;
    background-color: rgb(243, 243, 243);
    border-top: 1px solid rgba(177, 177, 177, 0.215);
    border-right: 1px solid rgba(177, 177, 177, 0.215);
    border-left: 1px solid rgba(177, 177, 177, 0.215);
    border-bottom: 1px solid rgba(177, 177, 177, 0.215);
    padding: 10px 60px;
    cursor: pointer;  
    @media screen and (max-width: 500px){
        padding: 10px !important;
    }
}


.button-log-active {
    background-color: rgb(255, 255, 255);
    border-top: 4px solid #fde100;
    border-right: 1px solid rgba(177, 177, 177, 0.215);
    border-left: 1px solid rgba(177, 177, 177, 0.215);
    border-bottom: 1px solid rgba(255, 255, 255, 0.215);
}

.log-content {
    padding: 20px;
    border-right: 1px solid rgba(177, 177, 177, 0.215);
    border-left: 1px solid rgba(177, 177, 177, 0.215);
    border-bottom: 1px solid rgba(255, 255, 255, 0.215);
}
.log-info-container h1 {
    font-size: 40px !important;
    font-weight: 500;
}

.log-info-container h1 span{
    font-style: italic;
    font-size: 48px;
    font-weight: 400;
}

.login-status {
    font-size: 20px;
    font-family: 'CFModGrotesk', sans-serif !important;
}

.login-button,.register-button {
    font-weight: 300 !important;
   color: black !important;
}

#loginuserform input, #registeruserform input{
    padding: 0.375rem !important;
}

.loyalty__inputs{
    display: none;
}

    .loyalty__inputs.active {
        display: block;
        padding: 20px;
        border: 1px solid #cccccc;
        border-radius: 4px;
        background-color: #fbfbfb;
    }

    .loyalty__inputs .loyalty__inputs__heading {
        margin-bottom: 16px;
        font-size: 14px;
        font-weight: 300;
        color: black;
        max-width: 280px;
    }
.checkbox__style__big {
    display: flex;
    align-items: center;
    gap: 8px;
/**/
    padding: 8px;
    border: 1px solid #eee7b4;
    border-radius: 4px;
    background-color: #fde1001c;
}
.checkbox__style__big input {
    height: 13px;
    width: 13px;
}

.checkbox__style__big label{
    font-size: 12px;
    font-weight: 300;
}

.loyalty__inputs .loyalty__inputs__caption {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 300;
    color: gray;
    max-width: 280px;
}

.checkbox__style__container {
    padding: 0 8px;
    margin-top: 8px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.error-message__custom{
    font-size: 12px;
    color: red;
    font-weight: 300;
}


.checkbox__style.checkbox__style__alert {
    display: grid;
    grid-template-areas:
        "checkbox label"
        "alert alert";
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.5rem;
}

    .checkbox__style.checkbox__style__alert input[type="checkbox"] {
        grid-area: checkbox;
    }

    .checkbox__style.checkbox__style__alert label {
        grid-area: label;
    }
    .checkbox__style.checkbox__style__alert .error-message__custom {
        grid-area: alert;
    }