/* public/css/styles.css */

body {
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ea1337;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between columns */
    max-width: 800px; /* Adjust as needed */
    margin: auto; /* Center the form horizontally */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: Background for form container */
    border-radius: 8px; /* Optional: Rounds the corners of the container */
}

.width-50 {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
}

.full-width {
   width: 100% !important;
}

#registration_form_phoneAge {
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    color: #999999;
}

.form-control {
    padding: 20px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    box-sizing: border-box;
}

.form-button {
    background-color: #007bff;
    color: white;
    padding: 20px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
}

.form-button:hover {
    background-color: #0056b3;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    background-image: url('/images/circulo-azul.png');
    background-size: auto;
    background-position: top left;
    background-repeat: no-repeat;
}

.inner {
    height: inherit;
    padding: 0;

}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.content > div {
    width: 50%;
    padding: 20px;
    text-align: center;
}

.content-form {
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

h1 {
    font-size: 60px;
    font-weight: 400;
    font-family: "Anton", Arial, sans-serif;
    color: #FFF;
}

span {
    color: #FC6704;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    color: #FC6704;
}

.abs-star {
    position: absolute;
}

.abs-emoji {
    position: absolute;
    right: 100px;
    top: 0;
    width: 180px;
}

@media (max-width: 760px) {

    .container {
        padding: 0;
        height: auto;
    }

    h1 {
        font-size: 60px;
        line-height: 1.2;
        margin: 5px 0;
    }

    h2 {
        font-size: 20px;
    }
    .form-container {
        padding: 10px;
    }

    .content {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .content > div {
        width: 100%;
        padding: 20px 0px;
    }

    .content-form {
        margin: 20px;
        padding: 20px;
    }

    .width-50 {
        flex: 1 1 100%;
    }

    .abs-star {
        position: absolute;
        left: 0;
        top: 0;
        width: 120px;
    }

    .abs-emoji {
        position: absolute;
        right: 0;
        top: 0;
        width: 100px;
    }
}

.form-check-label {
    font-size: 14px;
    color: gray;
}

input {
    box-sizing: border-box;
}

select {
    width: 100%;
}

#registration_form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

#registration_form div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5px;
    text-align: left;
}

#registration_form div:nth-last-child(3) {
    align-items: center;
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 5px;
    text-align: left;
}

#registration_form div:nth-last-child(3) label {
    order: 2;
}

#registration_form div label {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

#registration_form div input {
    padding: 20px 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#registration_form div select {
    padding: 20px 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#registration_form div input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

#registration_form div button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 20px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
}

.text-muted {
    display: none !important;
}

.is-invalid {
    border-color: #dc3545;
}

.help-text {
    display: block;
    font-size: 12px;
    color: #999999;
}

.datepicker {
    display: flex !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0px !important;
}

.datepicker select {
    width: 30% !important;
    padding: 15px !important;
}