/* ==========================================================================
   Reset básico
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   Estructura principal
   ========================================================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
}

.app {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   Section (Bloque)
   ========================================================================== */
.section {
    display: none;
}

.section--active {
    display: block;
}

.section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ==========================================================================
   Welcome (Bloque)
   ========================================================================== */
.welcome {
    margin: 10px 0 30px 0;
}

.welcome__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin-bottom: 5px;
}

.welcome__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
}

.welcome__title-highlight {
    color: #6B8E23;
    font-size: 42px;
    font-weight: 700;
}

.welcome__title-main {
    color: #6B8E23;
    font-size: 72px;
    font-weight: 900;
    display: block;
    margin-top: -10px;
}

.welcome__text {
    font-size: 17px;
    line-height: 1.4;
    color: #666;
    max-width: 320px;
    margin-bottom: 25px;
}

/* ==========================================================================
   Cards (Bloque)
   ========================================================================== */
.cards {
    display: flex;
    gap: 30px;
    margin: 35px 0 30px 0;
    justify-content: center;
    align-items: flex-end;
}

.cards__item--rotated {
    transform: rotate(-15deg);
}

.cards__image {
    width: 150px;
    border-radius: 12px;
}

.cards__image--phone {
    width: 120px;
    border-radius: 20px;
    border: 3px solid #333;
}

/* ==========================================================================
   Button (Bloque)
   ========================================================================== */
.button {
    border: none;
    /* font-size: 18px; */
    /* font-weight: 700; */
    /* border-radius: 50px; */
    cursor: pointer;
    /* width: 100%; */
    /* max-width: 300px;
    margin-top: 20px; */
}

.button--primary {
    background: #6B8E23;
    color: white;
    padding: 16px 40px;
}

/* ==========================================================================
   Registration (Bloque)
   ========================================================================== */
.registration__icon {
    width: 80px;
    height: 80px;
    background: #6B8E23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.registration__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.registration__subtitle {
    font-size: 22px;
    font-weight: 400;
    color: #6B8E23;
    margin-bottom: 25px;
}

/* ==========================================================================
   Form (Bloque)
   ========================================================================== */
.form {
    width: 100%;
    /* max-width: 400px; */
}

.form__group {
    /* margin-bottom: 16px; */
}

.form__group--checkbox {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.form__input {
    /* width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    text-align: center; */
}

.form__input:focus {
    outline: none;
    border-color: #6B8E23;
}

.form__checkbox {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form__label {
    /* font-size: 12px;
    line-height: 1.4; */
    color: #666;
}

.form__message {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.form__message--success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form__message--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form__message--visible {
    display: block;
}