@font-face {
  font-family: 'PageFont';
  src: url('../Font/Page.woff2') format('woff2');
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: rgba(0, 0, 0, 0.1);
  font-family: 'PageFont', Tahoma, sans-serif;
  direction: rtl;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
}

.card {
  background: #1e1e1e;
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  padding: 300px 30px 50px;
  text-align: right;
  line-height: 1.7;
  margin-top: 10px;
}

.logo {
  display: block;
  margin: 0 auto 25px;
  width: 180px;
  filter: none;
}

.title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  border-bottom: 2px solid #0074ff;
  padding-bottom: 8px;
}

.text {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0074ff;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50px;
  padding: 20px 0;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 100%;
  user-select: none;
  box-shadow: none;
}

.btn:hover {
  background: #ffffff;
  color: #0074ff;
  box-shadow: none;
}

@media (max-width: 500px) {
  .card {
    padding: 25px 20px 40px;
  }
  .title {
    font-size: 20px;
  }
  .text {
    font-size: 16px;
  }
  .btn {
    font-size: 18px;
    padding: 16px 0;
  }
  .logo {
    width: 140px;
    margin-bottom: 20px;
    filter: none;
  }
}
