@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

/* Initial config */
:root {
    --primary-color: #35373b;
    --secondary-color: #F49E0B;
    --primary-color-dark: #1f2125;
    --secondary-color-dark: #d79447;
    --dark: #111317;
    --white: #ffffff;
    --max-width: 1200px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

.pInvalid {
    color: var(--white);
}

/* Larger Devices (Laptops) */
.main_container {
    background-image: url('../img/gymBck.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}

.login_container {
    /* background-color: purple; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5rem;
}

.regards_gym {
    background-color: var(--secondary-color);
    padding: 4.5rem 3rem;
}

.regards_gym h1 {
    font-style: italic;
    font-size: 5rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
}

.regards_gym h2 {
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.10rem;
}

.login_gym {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 25px;
    padding: 1rem 2rem;
}

.title_form {
    font-style: italic;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.10rem;
    /* font-size: 1.5rem; */
    color: var(--white);
}

.input-container {
    position: relative;
    margin: 1.8rem 0;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0.2rem 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 200;
    pointer-events: none;
    z-index: 600;
    transition: 0.5s;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-1%);
    left: 14px;
}

.input {
    width: 100%;
    background: none;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    color: #fff;
    outline: none;
    padding: 1.2rem 1.2rem;
    font-weight: 400;
    font-size: 0.90rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

#showPsw {
    font-size: 1.5;
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    cursor: pointer;
}

.login_steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#btnChangePsw {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    cursor: pointer;
}

#btnLogin, #btnReturn {
    /* float: right; */
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding-left: 0.6rem;
}

#btnReturn {
    float: left;
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .login_container {
        width: 100%;
        flex-direction: column;
        padding: 8rem 0rem;
    }

    .regards_gym {
        width: inherit;
        padding: 6rem 1rem;
    }

    .regards_gym h1 {
        text-align: center;
        font-size: 4rem;
    }

    .regards_gym h2 {
        text-align: center;
    }

    .login_gym {
        margin-top: 8rem;
    }
}

/* Mobile first */
@media (width < 480px) {
    .login_container {
        width: 100%;
        flex-direction: column;
        /* align-items: center;
        justify-content: space-between; */
        padding: 6rem 0rem;
    }

    .regards_gym {
        width: inherit;
        padding: 4.5rem 1rem;
    }

    .regards_gym h1 {
        text-align: center;
        font-style: italic;
        font-size: 2.5rem;
        letter-spacing: 0.25rem;
        text-transform: uppercase;
    }

    .regards_gym h2 {
        text-align: center;
        font-weight: 800;
        font-style: italic;
        letter-spacing: 0.10rem;
    }

    .login_gym {
        margin-top: 5rem;
    }
}