@font-face {
    font-family: "myFont";
    src: url("ubvazir.ttf");
}

:root {
    scroll-behavior: smooth;
}

body {
    font-family: "myFont", sans-serif;
    background-color: #19212a;
    color: #444444;
}

a {
    color: #E3A342;
    text-decoration: none;
}

a:hover {
    color: #E3A342;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "myFont", sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
}

.hero .pay-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero .pay-card .success-icon {
    font-size: 80px;
    color: lightgreen;
    margin-top: 38px;
    display:inline-block;
    text-shadow:  0 0 100px lightgreen, 0 0 150px lightgreen,0 0 200px lightgreen;
}

.hero .pay-card .error-icon {
    font-size: 80px;
    color: #fc3030;
    margin-top: 38px;
    display:inline-block;
    text-shadow:  0 0 100px #fc3030, 0 0 150px #fc3030,0 0 200px #fc3030;
}

.hero #main-box {
    display: inline-block;
    width: 480px;
    padding-bottom: 25px;
}

@media (max-width: 768px) {
    .hero #main-box {
        display: inline-block;
        width: 340px;
        padding-bottom: 25px;
    }
}

#title-text {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 16px;
    margin-bottom: 16px;
    display: inline-block;
}

#ref-code-text {
    color: rgba(255, 255, 255);
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
}

#company-name-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
}

#amount-text {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
    margin-top: 26px;
    margin-bottom: 16px;
}

hr {
    border: none;
    border-top: 3px dotted rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
    height: 1px;
    width: 80%;
    margin: auto;
}

/*loading*/
#loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #19212a;
    opacity: 1;
    -webkit-transition: opacity 250ms linear;
    transition: opacity 250ms linear;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}