* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* Start - Variants */
:root {
    font-size: 62.5%;

    --ff-body: "Inter", sans-serif;

    --fs-heading-h1-desk: 6.4rem;
    --fs-heading-h1-mob: 4.8rem;
    --fs-heading-h2-desk: 3.5rem;
    --fs-heading-h2-mob: 3rem;
    --fs-texting-p-24: 2.4rem;
    --fs-texting-p-20: 2rem;
    --fs-texting-p-16: 1.6rem;
    --fs-texting-p-14: 1.4rem;
    --fs-texting-p-10: 1rem;

    --color-black: #363636;
    --color-gray: #d4d4d4;
    --color-white: #ffffff;
    --color-blue: #153365;
    --color-cyan: #0693E3;
    --color-blue-light-input: #D6E9FD;

    --color-success-main: #1BDB8B;
    --color-error-main: #e22211;
    --color-warning-main: #FFE063;
}

/* End - Variants */

body {
    font-family: var(--ff-body);
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.sidebar {
    width: 100%;
    max-width: 47.0rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #445269 0%, #273F68 59.38%, #07275C 100%);
}

.sidebar div {
    width: 100%;
    height: 100vh;
    padding-top: 15rem;
    padding-bottom: 4.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.logo-olympus {
    width: 100%;
    max-width: 33rem;
}

.logo-empresa {
    width: 100%;
    max-width: 32rem;
}

main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 42.3rem;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.login-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.login-container h1 {
    font-size: var(--fs-heading-h2-desk);
    text-align: left;
    color: var(--color-blue);
}

.login-container p {
    font-size: var(--fs-texting-p-14);
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
  
.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    height: 4.8rem;
    padding: 1rem;
    border: 0.1rem solid var(--color-gray);
    border-radius: 0.8rem;
}

.register {
    width: 100%;
    font-size: var(--fs-texting-p-16);
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
}

.register a {
    color: var(--color-cyan);
}

.login-container button {
    width: 100%;
    height: 4.8rem;
    background-color: var(--color-blue);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.8rem;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #0b285a;
}