/* =========================================
APPLY PAGE WRAPPER
========================================= */

.tickorder-apply-wrapper{
    max-width:600px;
    margin:60px auto;
    padding:40px;
    border-radius:28px;
}

/* =========================================
TITLE
========================================= */

.tickorder-apply-form h2{
    margin:0 0 30px;
    font-size:32px;
    font-weight:700;
    text-align:center;
    color:#000000;
}

/* =========================================
FORM GROUPS
========================================= */

.tickorder-apply-form p{
    margin-bottom:20px;
}

/* =========================================
INPUTS
========================================= */

.tickorder-apply-form input,
.tickorder-apply-form select{

    width:100%;
    height:56px;

    border:1px solid #e5e7eb;
    border-radius:16px;

    padding:0 18px;
    font-size:16px;

    background:#ffffff;
    color:#000000;

    transition:0.2s ease;
}

/* =========================================
FOCUS STATE (ONLY GREEN BORDER)
========================================= */

.tickorder-apply-form input:focus,
.tickorder-apply-form select:focus{

    outline:none;
    border-color:#16a34a;
}

/* =========================================
BUTTON (USES GLOBAL STYLE IDEA)
========================================= */

.tickorder-apply-form button{

    width:100%;
    height:58px;

    border:none;
    border-radius:18px;

    background:#16a34a;
    color:#ffffff;

    font-size:17px;
    font-weight:600;

    cursor:pointer;
}

/* =========================================
BUTTON HOVER
========================================= */

.tickorder-apply-form button:hover{
    opacity:0.9;
}

/* =========================================
SUCCESS MESSAGE
========================================= */

.tickorder-success-message{

    background:#16a34a;
    color:#ffffff;

    padding:18px 20px;
    border-radius:16px;

    margin-bottom:25px;

    font-weight:600;
    text-align:center;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .tickorder-apply-wrapper{
        margin:20px;
        padding:25px;
    }

    .tickorder-apply-form h2{
        font-size:26px;
    }
}