/* @font-face {
    font-family: "SivarPro";
    src: url("SivarPro.otf") format("opentype");
} */

@font-face {
    font-family: "Supr";
    src: url("../Fonts/Supreme-Medium.otf") format("opentype");
}

#bg {
    background: rgb(2,0,36);
    background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 86%, rgba(4,110,131,1) 100%);
    background-size: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    /* z-index: -1; */
}

* {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;

}

body {
        margin: 0;
        padding: 0;
        min-height: 100vh;
        background: #000000;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        overflow: hidden;
        overscroll-behavior: none;
        touch-action: manipulation;
        overscroll-behavior-y: contain;
        overscroll-behavior: contain;
        position: fixed;
        width: 100%;
}
/* body {
    background: rgb(2,0,36);
background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 86%, rgba(4,110,131,1) 100%);
overflow: hidden;
} */

.cont {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    padding: 20px;
    -moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}

.cr {
    width: 250px;
    height: 40px;
    border: none;
    border-radius: 3px;
    outline: none;
    background-color: rgba(9, 9, 121, 0.637);
    margin: 10px 0;
    padding: 10px;
    color: #fff;
    transition: background-color 1s;
    font-family: "Supr", Arial, sans-serif;
    font-size: 15px;
    transition: box-shadow 1s;
}

.cr:focus {
    box-shadow: 0 0 20px rgba(9, 9, 121, 0.575);
}

.but {
    transition: border-color, background-color 1.5s;
    font-family: "Supr", Arial, sans-serif;
    background-color: #1b3191f2;
    color: #fff;
    border: 3px solid;
    border-color: #1a2f8d;
    width: 175px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.but:hover {
    transition: background-color, border-color 1.5s;
    background-color: rgba(9,9,121,1);
    border-color: rgba(9, 9, 121, 0.637);
}

/* #loginrembox {
    appearance: none;
    background-color: transparent;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 0.15em solid #2b51f7f2;
    border-radius: 5px;
    transform: translateY(-4px);
}

#loginrembox:checked {
    background-color: #1b3191f2;
} */

.remLabel2 {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 8px 12px;
  
    cursor: pointer;
    transition: 500ms;
    transform: translateX(-10px);
  }
  
  .reminput {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
  }
  
  .rembox {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  
    background: linear-gradient(to right bottom, rgba(6,53,150,1) 0%, rgba(126,40,230,1) 100%);
    position: relative;
  }
  
  .rembox::before {
    content: '';
  
    display: inline-block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
  
    background: hsl(0, 0%, 90%);
    opacity: 1;
    transition: 500ms;
  }
  
  .reminput:checked+.rembox::before {
    opacity: 0;
  }
  
  .rad-text {
    font-family: Supr;
    color: white;
    margin-left: 14px;
    font-size: 17px;
    font-weight: 900;
    transition: 500ms;
  }
  
  .reminput:checked~.rad-text {
    background: linear-gradient(103deg, rgba(6,53,150,1) 0%, rgba(126,40,230,1) 100%);
    background-clip: text;
    color: transparent;
  }