:root {
    /* COLORS */
    --text-1: #4e4c52;
    --text-2: #828282;
    --text-3: #ffffff;
    --accent: #cc9b6a;
    --error: #ff0000;
}

/* TITLE */
.title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-1);
}

.title::after {
    position: absolute;
    content: '';
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

/* INPUT */
.input {
    padding: 0 16px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--border);
    outline: none;
    color: var(--text-1);
}

.input.error {
    border-color: var(--error);
}

/* BUTTON */
.button {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    box-shadow: var(--shadow);
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-3);
    cursor: pointer;
}

/* BUTTON ALT */
.button-alt {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    outline: none;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-1);
    cursor: pointer;
}

/* SOCIAL BUTTON */
.social-button {
    padding: 0 16px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-1);
}

.social-button__icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-button__icon > i {
    font-size: 24px;
}

.social-button.google i {
    color: #db4437;
}

.social-button.facebook i {
    color: #1877f2;
}

.social-button__separator {
    width: 1px;
    height: 36px;
    background-color: var(--border);
}

.social-button > span {
    font-size: 16px;
    font-weight: 400;
}
