@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.main_form {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0 auto;
    margin-top: 1.5rem;

    .form_textBienvenida {
        /* grid-column: span 1 / span 2;
        grid-row: span 4 / span 4; */
        padding: 0px 22px;

        h1 {
            font-size: 35px;
            color: var(--color-primary5);
            font-weight: 600;

            strong {
                background: linear-gradient(90deg, #326ed4, #5481b4ee, #013fe987);
                background-clip: text;
                color: transparent;
                font-size: 80px;
            }
        }
    }

    .form_register {
        /* grid-column: span 3 / span 3;
        grid-row: span 4 / span 4;
        grid-column-start: 3; */
        padding: 30px 45px;
        background: #fff;
        border-radius: 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;

        .container_elements {
            display: flex;
            flex-direction: column;
            gap: 25px;
            justify-content: space-between;

            .inputs_container {
                display: flex;
                gap: 80px;
                justify-content: space-between;

                .label {
                    font-size: 15px;
                    color: var(--color-primary5);
                    font-weight: 600;
                }

                input {
                    padding: 8px 10px;
                    text-align: left;
                    border-radius: 10px;
                    background: #f2f2f2;
                    border: none;
                    color: #3f3f3f;

                    &:focus {
                        outline: 1px solid #00154f48;
                        box-shadow: 0 0 3px var(--color-primary5);
                    }

                    &::placeholder {
                        font-size: 12px;
                    }
                }

                input[type="date"] {
                    width: 100%;
                }

                input[type="file"] {
                    display: none;
                }

                .label_images {
                    padding: 8px 10px;
                    text-align: left;
                    border-radius: 10px;
                    background: #f2f2f2;
                    border: none;
                    color: #3f3f3f;
                    font-size: 12px;
                    cursor: pointer;
                    width: 100%;
                }

                select {
                    padding: 8px 10px;
                    width: 52%;
                    border: none;
                    background: #f2f2f2;
                    border-radius: 10px;
                    color: #3f3f3f;

                }
            }
        }

        .inputs_containerBTN {
            margin-top: 1.2rem;

            button {
                font-size: 16px;
                color: #ffffff;
                background: var(--color-primary);
                padding: 8px 10px;
                border-radius: 30px;
                border: none;
                cursor: pointer;
                width: 40%;
                text-align: center;
                transition: background .2s linear;

                &:hover {
                    background: var(--color-primary5);
                }
            }
        }

    }
}

@media (max-width: 480px) {
    .main_form {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .form_textBienvenida {
            background: transparent;
            padding: 18px 35px;

            h1 {
                font-size: 30px;

                strong {
                    font-size: 66px;
                }
            }
        }

        .form_register {
            grid-template-columns: 1fr;
            padding: 35px 30px;
            margin-bottom: 2rem;

            .inputs_containerBTN {
                margin-top: 3rem;
            }

            .container_elements {
                .inputs_container {
                    input[type="date"] {
                        /* width: 54%; */
                        width: 85%;
                    }

                    select {
                        /* width: 46%; */
                        width: 51%;
                    }

                    .label_images {
                        /* width: 64%; */
                        width: 100%;
                    }
                }
            }
        }
    }
}