/* RESET CSS */
button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;

    background: transparent;

    /* inherit font & color from ancestor */
    color: inherit;
    font: inherit;

    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;

    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;

    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
}

/*
      1. Use a more-intuitive box-sizing model.
    */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
        2. Remove default margin
      */
* {
    margin: 0;
}

/*
        Typographic tweaks!
        3. Add accessible line-height
        4. Improve text rendering
      */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/*
        5. Improve media defaults
      */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/*
        6. Remove built-in form typography styles
      */
input,
button,
textarea,
select {
    font: inherit;
}

/*
        7. Avoid text overflows
      */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/*
        8. Create a root stacking context
      */
#root,
#__next {
    isolation: isolate;

    --primary-color: rgb(177, 39, 108);
}


/* FONTS */
@font-face {
    font-family: "MonaSansExpanded-SemiBold";
    src: url("../fonts/MonaSansExpanded-SemiBold.ttf");
}

@font-face {
    font-family: "MonaSans-SemiBold";
    src: url("../fonts/MonaSans-SemiBold.ttf");
}

@font-face {
    font-family: "MonaSans-Medium";
    src: url("../fonts/MonaSans-Medium.ttf");
}

@font-face {
    font-family: "MonaSansExpanded-Bold";
    src: url("../fonts/MonaSansExpanded-Bold.ttf");
}

/* LOGIN FORM CSS */

#login-wrapper {
    min-height: 100dvh;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/wp-content/uploads/2024/10/background_form.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.form-input-control input:focus,
.form-input-control input:focus-within,
.form-input-control input:focus-visible {
    background: #ffffff;
    border: 1px solid #00b79f;
    outline-color: #00b79f !important;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: block;
}

#login-form-wrapper {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
    border-radius: 20px;
    margin: 20px auto;
    padding: 30px 35px;
    position: relative;
}


#login-form-wrapper h2 {
    margin-bottom: 24px;
    font-family: "MonaSansExpanded-SemiBold";
    font-size: 26px;
    color: #0A033C;
    text-align: center;
}

#login-form-wrapper h2 > span {
    color: #00A596;
}

#login-form-wrapper .social-logins {
    display: flex;
    width: 100%;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#login-form-wrapper .social-login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: "MonaSans-SemiBold";
    font-size: 13px;
    text-decoration: none;
    color: #000000;
    padding: 12px 16px;
    min-width: 176px;
    border: 1px solid #D4D4D7;
    border-radius: 8px;
}

@media (max-width: 535px) {
    .social-login-btn {
        min-width: 280px;
        width: 100%;
    }
}

.seperator {
    font-family: "MonaSans-Medium";
    color: #899197;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 12px !important;
}

#login-form-wrapper .social-login-btn img {
    display: block;
    width: 16px;
    height: 16px;
}

#login-form-wrapper .form-inputs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-control {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: relative;
}

.form-input-control label {
    font-family: "MonaSans-Medium";
    font-size: 13px;
    line-height: 1.5;
    color: #000;
}

.form-input-control input {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #d4d4d7;
    border-radius: 100px;
    font-family: "MonaSans-Medium";
    font-size: 13px;
    line-height: 1.6;
    color: #000;
}

.form-input-control.password-input input {
    padding-right: 40px;
    position: relative;
}

.form-input-control.password-input button {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 12px;
    cursor: pointer;
}

.form-input-control.password-input button img {
    width: 16px;
    height: 16px;
}

.form-input-control.password-input > div {
    width: 100%;
    position: relative;
}

.form-input-control.password-input button:hover {
    background-color: #f7f5f0;
}

.hidden {
    display: none;
}

.forgot-password {
    font-family: "MonaSans-Medium", sans-serif;
    font-size: 13px;
    color: #808080;
    /* margin-bottom: 0 !important; */
    text-decoration: none;
    text-align: right;
}

.form-btn-wrapper {
    display: flex;
    margin-top: 24px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.form-btn {
    background-color: #ffc633;
    font-family: "MonaSansExpanded-Bold";
    font-size: 18px;
    line-height: 1.3;
    color: #0a033c;
    padding: 12px 24px;
    border-radius: 70px;
    cursor: pointer;
    min-width: 176px;
    transition: all 0.3s ease-out;
}

.form-btn:hover {
    background-color: #00A596;
    color: #FFF;
}

.register-link {
    font-family: "MonaSans-Medium", sans-serif;
    font-size: 13px;
    color: #808080;
}


.register-link a {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.login-failed {
    color: red;
    font-size: 14px;
}

#menu-main-menu.gusta-navigation .menu-item a {
    border-style: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #899197 !important;
}

#menu-main-menu.gusta-navigation .menu-item:hover a {
    color: #000000;
}

#gusta-footer .footer-wrapper {
    padding-top: 120px;
}

#gusta-footer .footer-wrapper .links-section {
    margin-top: 30px;
}