@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Matangi:wght@300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-section: calc(100vh - var(--footer-section));
    --footer-section: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

/* Body Section */

body {
    border: 1px solid #000;
    font-size: 62.5%;
    font-family: Karla;
}

/* Container Section */

.container {
    border: 1px solid #000;
    display: grid;
    grid-template-areas:
        "main main main main"
        "footer footer footer footer";
}

/* Main Section */

main {
    height: var(--main-section);
    grid-area: main;
    display: flex;
}

section {
    width: 50%;
}

/* Hero Section */

.hero_section {
    min-width: 50%;
    background-color: #FFF;
    opacity: .65;
    background-image: url("../images/fabrizio-coco-9bi4ilWgMmU-unsplash.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header_section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0 0 0;
}

.section_title {
    font-family: 'Karla';
    font-size: 1.75rem;
    font-weight: 600;
    filter: brightness(10%);
    position: relative;
    z-index: 5;
}

.shop_logo_article {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.the_shop_creative {
    mix-blend-mode: multiply;
    height: 20rem;
    width: 20rem;
    filter: blur(1px) brightness(100%);
    position: relative;
    z-index: 5;
}

/* User Form Section */

.user_form_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_title {
    font-size: 1.25rem;
    font-weight: 400;
 }

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    gap: .5rem;
    margin: 7rem 0 0 0;
}

input {
    height: 2rem;
    width: 14rem;
    border: none;
    border-bottom: 1px solid #000;
}

input:focus {
    border: none;
    outline: none;
}

input::placeholder {
    color: #000;
    font-family: Karla;
    font-size: 1.1rem;
    font-weight: 400;
}

.user_error {
    font-size: .8rem;
    font-weight: 400;
    padding-top: .25rem;
    color: red;
    visibility: hidden;
}

.form_title {
    display: flex;
    font-size: 1.75rem;
    font-family: 'Open Sans';
    font-weight: 500;
    align-items: center;
    padding: 2rem 0;
}

.form_icon {
    height: 8rem;
    width: 8rem;
}

.control_panel {
    padding: 1.5rem 0;
}

.already_account {
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 400;
}

.create_account_button {
    font-family: Karla;
    font-size: 1.1rem;
    padding: .3rem .4rem;
    box-shadow: 5px 5px 5px #000;
    background-color: #000;
    color: #FFF;
    border-radius: .25rem;
}

button:hover {
    cursor: pointer;
}

.already_account a {
    text-decoration: none;
}

/* Footer Section */

footer {
    border: 1px solid #000;
    grid-area: footer;
    height: var(--footer-section);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    background-color: #000;
}

footer p {
    color: #FFF;
    font-size: .9rem;
    font-weight: 400;
}