/*
|--------------------------------------------------------------------------
| Cravéa System Pages
|--------------------------------------------------------------------------
| Intended for join, login, forgot-password and reset-password pages.
*/

.sys-page {
    width: 100%;
    min-height: 100vh;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.sys-card {
    width: 100%;
    max-width: 460px;
}

.sys-logo {
    display: block;
    width: min(420px, 88vw);
    margin: 0 auto 22px;
}

.sys-form {
    display: grid;
    gap: 16px;
}

.sys-field {
    display: grid;
    gap: 7px;
}

.sys-field label {
    font-weight: 700;
}

.sys-field input,
.sys-field select,
.sys-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    background: #ffffff;
    color: #181818;
    font: inherit;
}

.sys-field input:focus,
.sys-field select:focus,
.sys-field textarea:focus {
    border-color: #111111;
    outline: 2px solid rgba(17, 17, 17, 0.12);
    outline-offset: 1px;
}

.sys-submit {
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-radius: 6px;
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.sys-links {
    margin-top: 18px;
    text-align: center;
}

.sys-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    background: #f8f8f8;
}
