@import url(./style.css);
h1 {
    font-family: 'Paul Grotesk', sans-serif;
  }

  h3 {
    font-family: 'Myriad Pro',sans-serif;
    
  }
   
  input[type="radio"] {
    display: none;
  }

  input[type="radio"]+label {
    cursor: pointer;
    border: 2px solid transparent;
    color: white;
  }

  /* input[type="radio"]:checked+label {
    border-color: #4caf50;
 
  } */
  input[type="radio"]:checked+label > img {
    border-radius: 100%;
    box-shadow:1px 1px 20px 10px red;
    filter: drop-shadow(0 1px 2px #0000001a) drop-shadow(0 1px 1px #0000000f);

  }
  input[type="submit"] {
    background-color: orange;
    color: #fff;
    padding: 5px 70px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;
    position: relative;
  }

  input[type="submit"]::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #fff;
    /* Adjust the color of the arrow */
  }

  input[type="submit"]:hover {
    background-color: #443eff;
  }

  input[type="submit"]:hover::after {
    border-color: transparent transparent transparent #443eff;
    transition: border-color 0.3s ease;
  }

  input[type="submit"]::before {
    content: "\2192";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 18px;
  }



  #selected-country {
    display: none;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
  }

  #selected-country-text {
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 24px;
    color: white;
    margin-left: 10px;
  }

  