﻿.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #2b3174;
    position: relative;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    min-height: 333px;
}

.form-detail h1 {
    margin: 0 0 23px 0;
}

.form-detail-item {
    font-size: 15px;
    display: flex;
    color: #c2c7ff;
    margin: 14px 0;
}

    .form-detail-item b {
        min-width: 120px;
        color: #fff;
    }

.detail-item-error {
    font-size: 15px;
}

.form-detail-footer .btn {
    background: #fff;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 38px;
    border-radius: 7px;
    font-weight: bold;
}

.form-detail-footer {
    display: flex;
    gap: 13px;
    margin-top: 42px;
}

.yes-btn {
    background: #eafc34 !important;
}

.recheck-btn {
    background: #FB8C00;
    border: none;
    color: #000;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 12px;
}

.popup-content img {
    position: relative;
    bottom: -1px;
    right: -120px;
}

.main-logo {
    position: absolute;
    top: 0;
}

.yellow-bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: #eafc34;
    margin-top: 128vh;
    z-index: -1;
}

body {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2b2e73+0,262a8b+28,292d8a+57,4e4ba2+90,6b62cf+100 */
    background: radial-gradient(ellipse at center, #2b2e73 0%, #262a8b 28%, #292d8a 57%, #4e4ba2 90%, #6b62cf 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100vh;
    font-size: 15px;
    color: #fff;
    font-family: sans-serif;
}

.main {
    background: url("/assets/img/bg.png");
    margin: auto;
    width: 1030px;
    min-width: 1030px;
    height: 480px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.form-input input {
    border: 0px;
    padding: 7px 12px;
    outline: none;
    width: 100%;
}

    .form-input input[type="checkbox"] {
        width:initial;
        margin-left:-1px;
    }

.form-input label {
    white-space: nowrap;
    text-align: right;
    min-width: 125px;
    padding-right: 14px;
}

.form-input {
    display: flex;
    margin: 7px 0px;
    align-items: center;
}

.form {
    width: 343px;
    position: absolute;
    right: 185px;
    top: 192px;
}

.copyright {
    position: absolute;
    left: 0;
    right: 0;
    color: #000;
    text-align: center;
    bottom: -30px;
}

.title {
    position: absolute;
    right: 150px;
    top: 52px;
}

    .title h1 {
        margin: 0px;
        font-size: 25px;
    }

.form-action button {
    background: #b90023;
    border: none;
    color: #fff;
    padding: 10px 38px;
    border-radius: 7px;
    font-weight: bold;
    cursor: pointer;
}

.form-action {
    padding-left: 139px;
    text-align: left;
}

.text-danger {
    color: #a94442;
}

.text-success {
    color: #198754 !important;
}

@media (max-width: 1200px) {
    .main {
        width: 100%;
        min-width: 100%;
        text-align: center;
        position: unset;
        background: url(/assets/img/popup.png);
        background-repeat: no-repeat;
        background-size: contain;
        height: 100vh;
        background-position: 0% 37%;
    }

    .title {
        position: absolute;
        top: 16%;
        right: 0;
        left: 0;
    }

    .form {
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
        bottom: 23% !important;
        top: unset;
        background-color: #272c8b;
        padding: 10px;
        border-radius: 7px;
        width: 90%;
    }

    .copyright {
        bottom: 30px;
    }

    .popup-content img {
        display: none;
    }

    .popup-content {
        padding: 30px;
        min-height: auto;
    }
}
