.main_container {
    
    .form_container {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        form {
            width: 60%;
        }

        fieldset {
            border: none;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 32px;

            .first {
                display: flex;
                flex-flow: column nowrap;
                gap: 32px;
            }

            .input {
                position: relative;
                display: flex;
                flex-grow: 1;

                input {
                    display: flex;
                    flex-grow: 1;
                    position: relative;
                    outline: none;
                    border: 0;
                    border-bottom: 1px solid #f0f0f0;
                    font-family: 'Delight', sans-serif;
                    text-transform: uppercase;
                    font-size: 16px;
                    font-weight: 600;
                    padding: 24px;
                    transition: all 0.2s linear;
                    color: #f0f0f0;
                    background: none;
                    cursor: none;
                }

                label {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    transition: all 0.2s linear;
                    left: 24px;
                    z-index: 1;
                    pointer-events: none;
                    font-size: 32px;
                    font-weight: 700;
                    color: #f0f0f0;
                    font-family: 'Delight', sans-serif;
                    text-transform: uppercase;
                    font-size: 16px;
                }

                .tamosFocus {
                    top: 0;
                    font-size: 12px;
                }

            }

            .textarea {
                overflow: hidden;

                #mensaje {
                    position: relative;
                    width: calc(100% - 48px);
                    border: 0;
                    outline: 0;
                    padding: 24px;
                    background: none;
                    color: #f0f0f0;
                    font-family: 'Delight', sans-serif;
                    text-transform: uppercase;
                    font-size: 16px;
                    font-weight: 600;
                    cursor: none;

                    &::placeholder {
                        color: #f0f0f0;
                        font-family: 'Delight', sans-serif;
                        text-transform: uppercase;
                        font-size: 16px;
                    }
                }
            }

            #enviarBtn {
                width: 100%;
                padding: 24px 0;
                text-align: center;
                background: #AE041E;
                font-family: 'Thunder', sans-serif;
                font-size: 40px;
                font-weight: 600;
                border: 0;
                color: #f0f0f0;
                cursor: none;
                text-transform: uppercase;

                &:hover {
                    background: #8c0116;
                }

                &:active {
                    background: #690110;
                }
            }
        }
    }
}