.holder {
    width: 100%;
    height: 90vh;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.login-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    font: 700 1.2rem "Space Grotesk", sans-serif;
    letter-spacing: -.06em;
}

.login-signup {
    background-color: #ffffff;
    padding: 30px;

    height: auto;
    min-height: auto;

    border: solid #e2e2e2 1px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

span.in {
    color: var(--primary);
}

.login-button {
    padding: 8px 18px;
    border-radius: 6px;
    margin-top: 12px;
    border: none;
    color: white;
    background-color: rgb(66, 94, 66);
    font-weight: 600;
    transition: background-color 0.15s ease;
}

.login-button:hover {
    background-color: rgb(115, 158, 115);
    cursor: pointer;
}

input {
    border-radius: 6px;
    padding: 8px 10px;
    border: 1px solid #d5d5d5;
    background-color: #fafafa;
    transition: border-color 0.15s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
}

.field {
    margin-bottom: 5px;
}

.field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.login-signup a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.login-signup a:hover {
    color: rgb(66, 94, 66);
    text-decoration: underline;
}

.gh {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background: #f38686;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: system-ui;
    cursor: pointer;
    margin-top: 10px;
}

.gh:hover {
    background: #ef5c5c;
}

.title {
    margin-top: 0px;
}

h4 {
    margin-bottom: 0px;
}

.title i {
    text-decoration: underline;
    color: rgb(114, 69, 69)
}

@media only screen and (max-width: 450px) {
    .holder {
        flex-direction: column;
    }
}