@import url("../styles/global.css");

main {
    width: 100vw;
    height: 100vh;

    display: flex;
}

section {
    width: 49.2%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 32px;
    font-weight: 500;
    font-style: normal;
    color: var(--black);
}

.form-container > p {
    font-size: 16px;
    margin-top: 22px;

    color: var(--black);
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;

    gap: 20px;
    margin-top: 70px;
}

fieldset {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox {
    flex-direction: row;
    gap: 6px;
    justify-content: start;
    align-content: center;
}

.checkbox > label {
    font-size: 9px;
}

form > button {
    background-color: var(--green);
    width: 100%;
    height: 36px;
    border-radius: 10px;
    color: var(--white);
    padding: 6px 0;
    font-weight: 700;
    box-shadow: 2px 2px 1px #555;

    transition: background-color 0.2s, box-shadow 0.1s;
}

button:active {
    box-shadow: none;
}

form > button:hover {
    background-color: #274611;
}


.title-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.side-img {
    width: 50.8%;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;

    object-fit: cover;
}

input {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

input[type="password"], input[type="email"], input[type="text"] {
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 8px 10px;
}

input::placeholder {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
}

a {
    font-size: 10px;
    font-weight: 500;
    color: var(--blue);
}

.divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 38px;
    gap: 4px;
}

.divider > p {
    font-size: 9px;
    font-weight: 500;
    color: var(--black);
}

.line {
    width: 100%;
    height: 1px;
    background-color: var(--gray);
}

.another-page {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.another-page > a {
    font-size: 16px;
}

.sso-container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 30px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.sso-container > button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 4px 24px;

    margin-top: 89px;
}

.sso-container > img {
    width: 24px;
    height: 24px;
}

.sso-container > p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
}