:root {
    --box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    --blue: #003057;
    --orange: #f15a2d;
    --border-color: #d3c4c4;
    --white: #fff;
    --em-1: 1em;
    --font-size: 16px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo img {
    width: 100px;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
}

.container>.form-container {
    display: flex;
    flex-direction: column;
}

.container>.form-container .-account-container {
    margin-top: 0.5em;
}
h1.has-text-align-center.wp-block-post-title {
    display: none;
}
.container>.form-container .-account-container>.title {
    margin: 0.5em 0;
    color: #ED1276;

    text-align: center;
    font-weight: 700;
    font-size: 27px;
    display: block;
}

.container>.form-container .-account-container>.tab {
    text-align: center;
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    margin: 0.5em auto;
}

.container>.form-container .-account-container>.tab .tab-item {
    display: flex;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--blue);
    font-weight: 600;
    font-size: var(--font-size);
}

.container>.form-container .-account-container>.tab .tab-item.active {
    border-bottom: 2px solid var(--orange);
}

.container>.form-container>.form .-account-container>.row {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.75em;
}

.container>.form-container>.form .-account-container>.form-group {
    flex-direction: row;
    justify-content: space-between;
}

.container>.form-container>.form .-account-container>.row>.col {
    width: 48%;
}

.container>.form-container>.form .-account-container>.row>.col-1 {
    margin-right: 0.25em;
}

.container>.form-container>.form .-account-container>.row>.col-2 {
    margin-right: 0.25em;
}

.container>.form-container>.form .-account-container .btn-upload-image {
    font-size: var(--font-size);
    font-weight: bold;
    color: red;
}


.container>.form-container>.form .terms {
    text-align: start;
    font-size: var(--font-size);
    font-weight: 600;
}

.container>.form-container>.form .actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5em;
}

.container>.form-container>.form .actions>input {
    font-size: var(--font-size);
    width: 150px;
    border-radius: 0.5em;
    height: 50px;
    border: 1.25px solid;
    cursor: pointer;
}

.container>.form-container>.form .actions>.cancel {
    background: var(--white);
    color: var(--blue);
}

.container>.form-container>.form .actions>.cancel:hover,
.container>.form-container>.form .actions>.submit:hover {
    border: 1.5px solid var(--blue);
}

.container>.form-container>.form .actions>.submit {
    background: #ED1276;
    color: var(--white);
}

input,
select,
textarea {
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding-left: 0.75em;
    font-size: var(--font-size);
}

select {
    height: 54px;
    padding-left: 0.25em;
}

input::placeholder,
textarea::placeholder,
.placeholder,
select:invalid {
    font-size: var(--font-size);
    color: gray;
    padding: 0.15em;
    font-family: Arial, Helvetica, sans-serif
}

input:focus {
    outline-color: var(--blue);
}

option {
    font-size: var(--font-size);
}

textarea {
    resize: none;
}

label.error {
    font-size: 10px;
    color: var(--orange);
    font-weight: 500;
    display: flex;
    margin: 1px;
}

input.error,
select.error {
    border: 1.5px solid var(--orange);
}

.fill-w {
    width: -webkit-fill-available;
}

.percent-icon:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "%";
}

/* response container */
.repsonse-container {
    display: flex;
    flex-direction: column;
    margin: var(--em-1) auto;
    align-items: center;
}

.repsonse-container>.message {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blue);
    font-weight: 500;
}

.repsonse-container>.message>* {
    text-align: center;
}

@media screen and (max-width: 320px) {
    .container {
        width: 100%;
        margin: 0;
    }

    .container>.logo img {
        width: 60vw;
    }

    .container>.form-container>.form .-account-container>.row {
        flex-direction: column;
    }

    .container>.form-container>.form .-account-container>.row>.col {
        width: 100%;
    }

    .container>.form-container>.form .-account-container>.row>.col-1 {
        margin-right: 0;
    }

    .container>.form-container>.form .-account-container>.row>.col-2 {
        margin-left: 0;
        margin-top: 0.75em;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: brightness(0.6);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30vw;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* Login */
.shw-form-account .loginForm,
.shw-form-account .registerForm {
    margin: 0
}

.shw-form-account .form input {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}


.shw-message {
    margin: 0 0 0;
    color: #796060;
    font-size: 1rem;
    font-weight: 500;
}

.shw-message a {
    color: #696969;
    text-decoration: none;
}

.swal2-validation-message {
    flex-direction: row;
    flex-wrap: wrap;
}

.password-wrapper {
    position: relative;
}

.toggle-button {
    display: inline-flex;
    position: absolute;
    top: 36%;
    transform: translateY(-50%);
    left: unset;
    right: 12px;
    cursor: pointer;
}

.eye-icon {
    width: 20px;
    height: 20px;
}

label {
    font-size: var(--font-size);
}

.shw-text-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.shw-text-header .logout {
    background: var(--icon-logout) no-repeat 5px 5px #484B4F;
    background-size: 26%;
    width: fit-content;
    cursor: pointer;
    min-width: 110px;
    border-radius: 50px;
    padding: 10px 20px 10px 0;
    color: White;
    font-size: 14px;
    text-align: left;
    text-indent: 40px;
    display: block;
    margin-left: 10px;

    /* Animations: */
    -webkit-transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    -webkit-transition-property: all;

    -moz-transition-timing-function: ease-in-out;
    -moz-transition-duration: .4s;
    -moz-transition-property: all;
}

.shw-text-header .logout:hover {
    background-image: var(--icon-logout-hover);
    background-position: 90px 5px;
    text-indent: 15px;
}

.shw-text-login-header {

    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
}

.shw-text-login-header a {
    cursor: pointer;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    margin: 0 10px;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0 0 20px rgba(104, 85, 224, 0.2);
    transition: 0.4s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.shw-text-login-header .btn-register {
    color: white;
    background-color: rgba(104, 85, 224, 1);
}

.shw-text-login-header .btn-login {
    color: rgb(104, 85, 224);
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(104, 85, 224, 1);
}

.shw-text-login-header a:hover {
    color: white;
    /* width:; */
    box-shadow: 0 0 20px rgba(104, 85, 224, 0.6);
    background-color: rgba(104, 85, 224, 1);
}

.account-link {}

.account-link span {
    background: none;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    position: relative;
}

.account-link span:after {
    transform: translateY(-50%);
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ED1276;
    position: absolute;
    left: 5px;
    top: 50%;
    z-index: -1;
    transition: 0.3s ease;
}

.account-link span:hover {
    color: white;
}

.account-link span:hover:after {
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 10px;
}

/*gallery-container*/
.form-images img {
    cursor: pointer;
    width: 900px;
    max-width: 100%;
    aspect-ratio: 1.5 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}



.image-item {
    width: 100%;
    max-height:100px;
}