@font-face {
  font-family: Tinkoff;
  src: url(font/TinkoffSans-Regular.ttf);

}
@font-face {
  font-family: Tinkoff Medium;
  src: url(font/TinkoffSans-Medium.ttf);


}
@font-face {
  font-family: Tinkoff Bold;
  src: url(font/TinkoffSans-Bold.ttf);

}

body {
  background-color: #f3f5f9;
  margin: 0;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in;
}

.loader.show {
  display: flex;
}

.loader-content {
  text-align: center;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #005bbb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-content p {
  font-family: Tinkoff;
  font-size: 1.2rem;
  color: #005bbb;
  font-weight: 600;
  margin: 0;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.header {
  margin-top: -30px;
  display: flex;
  align-items: center;      
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
  font-family:Tinkoff;       
}  
.header h2{
  font-size: 2rem;
  font-weight: 500;
}  

.logo {
  width: 170px;
  height: 70px;
  object-fit: contain;
}

.island-full {
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;                  
}


#island {
  display: flex;                
  align-items: center;
  justify-content: space-between; 
  width: 450px;
  height: 80px;             
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

@media (max-width: 1400px) {
  .displaysmoll{}
  .header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #register-password{
    width: 100%;
  }
  #register-emaill{
    display: flex;
  }
  #register-email{
  }
  .containe{
    margin-top: px;
  }
  .full{
    margin-top: 50px;
  }
  .form-group{
    display: flex;
  }
  #island {
    width: 90%;
    height: auto;
    min-height: 100px;
    min-width:200px ;
  }

  .logo {
    width: 150px;
    height: auto;
  }
  .footer{
  display: none;
  }
}



@media (max-width: 1364px) {
  .island-full {
    margin-left: 0; 
    flex-direction: column; 
  }

  #island {
    width: 90%;
    height: auto;
    min-height: 100px;
    min-width: 200px;
  }

  .logo {
    width: 150px;
    height: auto;
  }


}



.logo2{
  width: 60px;    
  height: 60px;
  object-fit: contain;
}
  
#island .content h2 {
  margin: 0 0 0 0; 
  font-size: 1.5rem;
  font-weight: 600;
}

#island .content p {
  font-size: 1.25rem;
  margin: 0; 
  line-height: 1.4; 
  color: #555; 
}


.left{
     margin-left: 100px;
    font-size: 1.5rem;
     font-weight: 600;

}


.island-container {
  display: flex;
  align-items: center; 
  gap: 20px;           
}

.right-outside-text {
  margin: 0;
  font-size: 1.2rem;
  color: #555;
}
@media (max-width: 768px) {
   
  .island-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .right-outside-text{
    white-space: normal;
  }
}


.container {
  margin-top: 180px;
  width: 500px;
  max-width: 95%;
  font-family: "Tinkoff", Arial, sans-serif;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  margin-bottom: 5px;
}

label span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: #666;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input,
select {
  border: 1px solid #033e85;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

input:focus,
select:focus {
  border-color: rgb(85, 135, 192);
}

.card-input {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input input {
  width: 100%;
  padding-right: 50px;
}

.card-logo {
  position: absolute;
  right: 10px;
  width: 40px;
  height: auto;
}

.expiry-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.expiry-labels label {
  flex: 1;
  text-align: left;
}

.expiry-row {
  display: flex;
  gap: 10px;
}

.expiry-row select {
  flex: 1;
}

.submit-button {
  
  background-color: #005bbb; 
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px; 
  font-size: 1.2rem; 
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.submit-button:hover {
  background-color: #004a99; 
}

.message {
  margin-top: 10px;
  font-weight: 500;
  color: green;
  text-align: center;
}


@media (max-width: 480px) {
  
  .header{
    margin-top: 10px;
  }
}
#register-password{
  max-width:470px;
}

.image-last{
 position:absolute;
 left: 1320px;
 bottom: 1px;
 
}

footer{
  font-family:Tinkoff;
  font-weight: 530;
  display: flex;
   position: fixed;
  bottom: 0; 
  left: 0;
  text-align: center;
  gap: 100px;
  margin-left: 20px;
}
footer a{
  text-decoration: none; 
  cursor: pointer;
  color: inherit; 
}


.footer a:hover{
  text-decoration: underline 1px #033e85;
}




.footer-links {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #ff0000;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  margin: 0 6px;
  color: #004a99;
}
.global-text {
  margin-left: 150px;
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 10px;              
}
.global-text span{
  color: #033e85;
  font-weight: 800;
}
@media (max-width: 1364px) {
  .header{
    margin-top: 10px;
  }

  .island-full {
    margin-left: 0; 
    flex-direction: column; 
  }

  #island {
    width: 100%;
    height: auto;
    min-height: 100px;
    min-width: 200px;
  }

  .logo {
    width: 150px;
    height: auto;
  }
  .text-heh{
    display: none;
  }
  .image-last {
    display: none;
  }
}

@media (max-width:500px) {
  #register-password{
    width: 93%;
  }
}
 
.displaysmoll {
 display: none;
}

.displaysmoll:active {
 display: none;
}


@media (max-width: 1400px ) {
  .displaysmoll {
    position: fixed;
    top: 850px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #033e85;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    display: block; 
  }

 
}

@media (max-width: 429px ) {
   .left{
    display: none;
   }

 

 
}


