/* =========================================================
   LOGIN PAGE
========================================================= */

.sony_land_1 {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    z-index: 0;
}

.sony_land_1::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/Login-Page.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.form_area {
    position: fixed;
    top: 11%;
    left: 64%;
    width: 25%;
    padding: 4px 12px 6px;
    border: 0;
    border-radius: 20px;
}

.form_heading {
    width: 100%;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.form_heading b {
    font-size: 10px;
    font-weight: 800;
}

.form_heading abbr {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
}

.detail_form_list {
    width: 100%;
}

.detail_form_list li {
    width: 100%;
    padding-bottom: 10px;
}

.detail_form_list li label {
    display: block;
    padding: 2px 0 7px 5px;
    color: #f7f7f7;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.detail_form_list li input,
.detail_form_list li select {
    width: 100%;
    margin-bottom: 2px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
    color: #000;
}

.detail_form_list li input::placeholder,
.detail_form_list li select {
    color: #000;
}

.err_msg {
    display: none;
    color: #d10000;
    font-size: 13px;
    margin-top: 6px;
}

.err_msg abbr {
    text-decoration: none;
}

.sub_button {
    width: 100%;
    padding: 0 10px;
    text-align: center;
}

.sub_button a {
    display: inline-block;
}

.sub_button a.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.sub_button a img {
    margin-top: 6px;
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (min-width: 501px) and (max-width: 900px) {
    .sony_land_1 {
        min-height: 300px;
    }

    .form_area {
        position: absolute;
        left: 60%;
        width: 29%;
    }

    .form_heading {
        padding: 2px;
        font-size: 11px;
    }

    .detail_form_list li {
        height: 22px;
        padding: 0;
    }

    .detail_form_list li input,
    .detail_form_list li select {
        height: 15px;
        margin-left: 4%;
        padding: 0 5px;
        font-size: 10px;
    }

    .err_msg {
        margin-top: -1px;
        font-size: 5px;
    }

    .sub_button {
        padding: 1px 10px;
    }

    .sub_button a img {
        width: 50%;
        margin-top: 5px;
    }
}

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

@media (max-width: 500px) {
    .sony_land_1 {
        min-height: 768px;
    }

    .sony_land_1::before {
        background-image: url("../images/Login-Page-Mobile-Version.jpg");
        background-size: 100% 100%;
    }

    .form_area {
        position: absolute;
        top: 43%;
        left: 15%;
        width: 67%;
    }

    .form_heading {
        padding: 5px 0;
        font-size: 14px;
    }

    .detail_form_list li input,
    .detail_form_list li select {
        height: 20px;
        padding: 0 5px;
        font-size: 12px;
    }

    .sub_button a img {
        width: 40%;
    }
}
