@font-face {
  font-family: 'CustomFont';
  src: url('font/yekan\ bakh\ en\ 05\ medium.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'CustomFont', sans-serif;
  background-color: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;

  section {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 2px solid #e0e6eb;
    transition: transform 0.25s ease;

    &:hover {
      transform: translateY(-3px);
      border-color: #a0c4ff;
    }

    h2 {
      text-align: center;
      font-size: 1.6rem;
      color: #2e3a59;
      margin: 0;
      letter-spacing: 0.5px;
    }

    .select-group {
      display: flex;
      flex-direction: column;

      label {
        font-size: 0.95rem;
        margin-bottom: 5px;
        color: #555d75;
        font-weight: 500;
      }

      select {
        padding: 10px 14px;
        border-radius: 10px;
        border: 1px solid #ccd6eb;
        font-size: 1rem;
        font-family: 'CustomFont', sans-serif;
        background-color: #f1f5f9;
        transition: all 0.25s ease;
        cursor: pointer;

        &:hover {
          border-color: #6ca0dc;
        }

        &:focus {
          border-color: #4a90e2;
          box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
          outline: none;
          background-color: #ffffff;
        }
      }
    }
  }
}
