@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800;900&display=swap');

*{
    margin:0;
    padding:0;
}

body{
    font-family: 'Inter', sans-serif;
    background:#11151c;
}

.fullscreen{
    width:100%;
    height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#FFF;
    position:relative;
}

.logo{
    position:absolute;
    top:10%;
    left:50%;
    transform:translateX(-50%);
}

.logo img{
    width:170px;
}

form{
    max-width:500px;
    background:#1d2026;
    padding:30px;
    box-sizing-border-box;
    border-radius:10px;
    width:100%;
}

h1{
    margin-top:0px;
    margin-bottom:20px;
    font-size:1.8rem;
    font-weight:700;
}

label{
    display:block;
    font-size:14px;
}

input{
    margin:10px 0;
    width:100%;
    height:45px;
}

input[type=text], input[type=mail], input[type=password]{
    text-indent:10px;
    box-sizing:border-box;
    border-radius:0px;
    border:0px;
    font-size:16px;
}

input[type=submit]{
    display:block;
    border:0px;
    background:#f20530;
    color:#FFF;
    width:100%;
    border-radius:10px;
    font-family: 'Inter', sans-serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.dash{
    background:#1d2026;
    padding:30px;
    box-sizing:border-box;
    border-radius:10px;
    min-height:auto;
    position:relative;
    opacity:0;
    animation:apps .5s .1s ease forwards;
}



@keyframes apps{
    0%{opacity:0;}
    100%{opacity:1;}
}



.remind {
  background: #25282d;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 10px;
}

.r-label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: #595959;
}

.r-value{
    font-weight:600;
}

.m-value{
  height: auto;
  margin: 0px !important;
  text-indent: 0 !important;
  background:transparent;
  font-weight:600;
  outline:none;
  color:#FFF;
  -webkit-appearance:none
}

.m-value::placeholder{
    opacity:0.2;
}

.user{
  font-size: 12px;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-right:5px;
}

.user span{
    font-size:16px;
}

.withIcon span {
  color: #f20530;
}

.solde{
  background: #f20530;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

.solds {
  font-size: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f20530;
  padding: 5px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 600;
}

.solds span {
  font-size: 14px;
}

.retrait{
  background: #25282d;
  text-align: center;
  padding:30px 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

.s-label {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: 600;
  opacity: 0.3;
}

.s-value{
  display: block;
  font-weight: 800;
  font-size: 1.5rem;
}

.s-solde::placeholder {
  color: #bdbdbd;
}

.s-solde {
  background: transparent;
  -webkit-appearance: none;
  outline: none;
  border: 0px;
  text-align: center;
  font-size: 2.5rem !important;
  font-weight: 700;
  height: auto;
  margin: 0;
  text-indent: 0px !important;
}

.s-solde::placeholder{
    color:#595959;
}

.withIcon{
    display:flex;
    align-items:center;
    gap:10px
}

.r-validate{
  width: 100%;
  border: 0px;
  height: 65px;
  background: #f00;
  font-weight: 600;
  border-radius: 10px;
  transition:.2s ease;
  cursor:pointer;
}

.r-validate:hover{
    opacity:0.8;
}

.back{
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  color: #555;
  background: #25282d;
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 0 10px;
  font-weight: 600;
}

.successDeposit{
    text-align:center;
}

.successDeposit .material-icons{
  display: block;
  color: #f20530;
  font-size: 30px;
}

.successTitle{
  color: #f20530;
  font-weight: 600;
  font-size: 18px;
}

.successDeposit p{
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.5em;
  color: #7b7b7b;
  background: #11151c;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
}

.expTitle{
  display: block;
  font-size: 12px;
  color: #db0000;
  margin-top: 4px;
}

.goback{
  color: #FFF;
  background: #f20530;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}

.again{
  color: #FFF;
  background: #393939;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}

.logout {
  position: fixed;
  top: 0;
  right: 0;
  text-decoration: none;
  color: #333b48;
  background: #191e26;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 15px;
  border-bottom-left-radius: 10px;
}

.paypal-button-row.paypal-button-layout-vertical{
    margin-bottom:10px !important;
}

fieldset{
  border: 2px dashed #424242;
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
  margin-top:20px;
}

fieldset legend{
  font-size: 13px;
  color: #6c6c6c;
  background: #1d2026;
  padding: 0 10px;
}

.txtform {
  color: gray;
  font-size: 12px;
  margin-bottom:8px;
}

.footer {
  margin-top: 30px;
  width: 100%;
  position: relative
}

.footer-text {
  max-width: 700px;
}

.footer a {
  color: #f20530;
}

.footer a:hover {
  color: white;
  transition: 0.2s ease;
}

.footer .content {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
  justify-content: center;
}

.footer p {
  font-size: 0.8em;
  margin: auto;
  margin-bottom: 10px;
  color: white;
  font-family: 'Inter', sans-serif;  
}

.col {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  line-height: 1.5em;
  min-width: min-content;
}

.col a {
  text-decoration: none;
  color: white;
  padding-bottom: 10px;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.45;
}

svg {
  fill: #f20530;
}

@media(max-width:810px){
    .logo{
        top:9%;
    }
    
    .logo img {
      width: 150px;
    }
    
    .fullscreen{
        padding: 60px 0;
        height:auto !important;
    }
        
    .dash{
        padding-top:50px;
        transform: translateY(40px);
    }
    
    form{
        max-width:90%;
        transform:translateY(50px);
        box-sizing:border-box;
    }
      .footer .content {
    flex-direction: column;
    align-items: center;
    width: 90%;
  }

  .footer a {
    font-size: 0.8em;
    text-align: center;
  }

  .footer-text {
    max-width: none;
    text-align: center;
  }

  .logo2 {
    margin-bottom: 10px;
    margin-right: 0;
  }
}