.app-header {
    position: relative;
    margin-inline: auto;
    z-index: 10;
}

.app-header__inner {
    width: full;
    display: flex;
    align-items: center;
    height: 64px;
    top:40px;

    @media (width > 48rem) {
        position: absolute;
    }
}

.wrapper {
    display: grid;
    height: 100vh;

    @media (width > 48rem) {
        grid-template-columns: repeat(2, 1fr);
    }
}
.form-wrapper {
    display: grid;
    place-content: center;
}

.form-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1ch;
    margin-inline-start: 40px;
}

.logo-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
}

.image-cover {
    display: none;

    @media (width > 48rem) {
        display: block;
    }
}

form {
    display: grid;
    gap: 28px;
}

input {
    border: 1px solid;
    border-radius: 6px;
    border-color:#e5e5e5;
}

input:not([type=checkbox], [type=radio]) {
    font-size: .875rem;
    padding-inline: 12px;
    padding-block: 8px;
}

button {
    font-size: .875rem;
    font-weight: 500;
    height: 36px;
    padding-inline: 1rem;
}

label {
    font-size: .875rem;
    font-weight: 500;
}

.form-header {

    h1 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0a0a0a;
    }

    p {
        color: #737373;
        font-size: .875rem;
        margin-top: 4px;
    }
}

.form-group {
    display: grid;
    gap: .375rem;
}

.form-group:has(.remember-me) {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: .5ch;
}

.forgot-password {
    font-size: .875rem;
    text-align: end;
}

.not-have-account {
    font-size: .875rem;
    text-align: center;

    a {
        text-decoration: underline;
    }
}

button[type="submit"] {
    background: #1D4ED8;
    color: white;
    border-radius: 6px;
}

.register-submit-container {
    display: flex;
    justify-content: space-between;
}

.required {
    color:red;
}