/* ================================
   SOLOBEA FORM SYSTEM
   ================================ */

.solobea-form {
    max-width: 768px;
    margin: 0 auto;
    padding: 36px 30px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Headings */
.solobea-form h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0f172a;
}

/* Group spacing */
.solobea-form > div {
    margin-bottom: 16px;
}

/* Labels */
.solobea-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

/* Inputs, textarea, select */
.solobea-form input,
.solobea-form textarea,
.solobea-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
.solobea-form input:focus,
.solobea-form textarea:focus,
.solobea-form select:focus {
    outline: none;
    border-color: rgb(6,156,212);
    box-shadow: 0 0 0 3px rgba(6,156,212,0.15);
}

/* Buttons */
.solobea-form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, rgb(6,156,212), #0ea5e9);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(6,156,212,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Secondary buttons (Google etc.) */
.solobea-form button[type="button"] {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Button hover */
.solobea-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(6,156,212,0.35);
}

/* Images inside buttons */
.solobea-form button img {
    vertical-align: middle;
    margin-right: 6px;
}

/* Links */
.solobea-form p {
    text-align: center;
    font-size: 14px;
    margin-top: 14px;
    color: #475569;
}

.solobea-form a {
    color: rgb(6,156,212);
    text-decoration: none;
    font-weight: 600;
}

.solobea-form a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .solobea-form {
        padding: 28px 22px;
    }
}
