/* AUTH PAGES */
:root {
    --font-r: "Onest", sans-serif;
    --font-b: "Onest", sans-serif;
    --font-eb: "Onest", sans-serif;
    --blue-cl: #02a0a6;
    --black-cl: #1e1e1e;
}

.auth-section {
    min-height: calc(50vh - 70px);
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: white!important;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.auth-title {
    font-size: 32px;
    color: var(--black-cl);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.4;
}

.auth-alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.auth-alert.error {
    background: #ffecec;
    border-color: #ffb3b3;
    color: #7a1414;
}

.auth-alert.success {
    background: #eaffe8;
    border-color: #9be59b;
    color: #1f6a1f;
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 560px) {
    .auth-card { padding: 22px; }
    .auth-row { grid-template-columns: 1fr; }
}

.auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.auth-links a {
    color: var(--blue-cl);
    transition: 0.2s ease;
}
.auth-links a:hover {
    opacity: 0.75;
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin-top: 4px;
}

.auth-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--blue-cl);
}

.auth-divider {
    margin: 18px 0;
    height: 1px;
    background: rgba(0,0,0,0.08);
}

.auth-note {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.icursuri-form {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    gap: 15px;
}


.icursuri-input input,
.icursuri-input textarea {
    width: 100%;
    padding-left: 10px;
    color: var(--black-cl);
    background: #e6e5e3;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: 0.3s ease;
}

.icursuri-input input {
    height: 40px;
}

.icursuri-input input::placeholder {
    color: #636361;
}

.icursuri-input input:focus {
    border: 2px solid #636361;
}

.button-action {
    background: var(--blue-cl);
    width: 198px;
    height: 41px;
    color: #fff;
    border-radius: 20px;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
    outline: none;
    border: 2px solid var(--blue-cl);
}

.button-action:hover {
    background: #fff;
    color: var(--blue-cl);
}
