@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sorts+Mill+Goudy:ital@0;1&display=swap');

html,
body {
  height: 100%;
}
body {
    background: url('../img/background.jpg') no-repeat center center #090810;
    color: #FFFFFF;
    background-size: contain;
    font-family: "Playfair Display", serif;
    font-size: 14px;
}
body::after {
    content: '';
    background: rgba(0, 0, 0, .4);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.btn-854567 {
    background: #854567;
    color: #FFFFFF;
    border-color: #854567;
}
.btn-854567:hover,
.btn-854567:focus,
.btn-854567:active,
.btn-854567.active {
    background: #9d6781!important;
    border-color: #9d6781!important;  
}

.landing-wrapper {
    max-width: 500px;
    padding: 1rem;
    position: relative;
    z-index: 9;
}
.landing-wrapper h1 {
    position: relative;
}
.landing-wrapper h1::after {
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, .7);
    width: 50px;
    display: table;
    margin: 15px auto;
}
.landing-wrapper .btn-submit {
    min-width: 150px;
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
}
.landing-wrapper .alert {
    padding: 8px 15px;
    font-size: 12px;
}
.landing-wrapper .alert .btn-close {
    padding: 10px;
    top: 2px;
    right: 2px;
}
.landing-wrapper .phone_input-group {
    border: 2px solid #854567;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    background: #000000;
}
.landing-wrapper .phone_input-group .country_code {
    margin-right: 15px;
}
.landing-wrapper .phone_input-group .form-control {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 20px;
    -moz-appearance: textfield;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}
.landing-wrapper .phone_input-group .form-control::-moz-placeholder {
    color: #854567;
}
.landing-wrapper .phone_input-group .form-control::placeholder {
    color: #854567;
}
.footer-text { font-size: 13px; color: #d7d7d7; line-height: 17px; padding-top:20px}
.footer-text a { color: #d7d7d7; text-decoration: none;}

.btn::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #d7d7d7;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 2.5s infinite;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0%;
    }
}


@media (max-width: 767.98px) { 

    html,
    body {
        height: auto;
    }
    body {
        background-size: 120%;
        background-position: top center;
    }

}