/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    
    background-color: #0f0715;

}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    margin-top: 70px;
    border:none;
    border-radius: 17px;
    background: linear-gradient(45deg, #0f0715 0%, #45277b 100%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

}

input {
    padding: 0.75rem;
    border: none;
    background:#45277b;
    border-radius: 4px;
    font-family: 'YekanBakhRegular';

    font-size: 1rem;
    color: white;
    border-radius: 12px;
    outline: none;
    text-align: right;
    margin-bottom: 20px;

}

input::placeholder {
    color: #ffffff;
    font-family: 'YekanBakhRegular';
}

@font-face {
    font-family: 'YekanBakhBold';
    src: url('../css/fonts/YekanBakh-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhBlack';
    src: url('../css/fonts/YekanBakh-Black.ttf') format('truetype');
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhSemiBold';
    src: url('../css/fonts/YekanBakh-SemiBold.ttf') format('truetype');
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhRegular';
    src: url('../css/fonts/YekanBakh-Regular.ttf') format('truetype');
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhLight';
    src: url('../css/fonts/YekanBakh-Light.ttf') format('truetype');
    font-style: normal;
  }
  
 .submit {
    color: #000000;
    text-align: center;
    margin-top: 10px;
    font-family: 'YekanBakhBold';
    background: #FFFFFF;
}

.logo {
  position: absolute;
  top: 10px; /* فاصله از بالا */
  right: 10px; /* فاصله از راست */
}

.logo img {
  height: 100px;
  width: 100px;
}

  .back-button {
    position: fixed;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 6px 9px 9px ;
    background: linear-gradient(0deg, #45277b 0%, #45277b 100%);
    cursor: pointer;
    border-radius: 5px;
  }
