.google-btn {
    width: 100%;
    background-color: white; 
    color: #555;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
    border: 1px #d8cfcf solid;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: none;
    border-radius:30px;
}

.google-btn:hover {
  background-color: #f8f9fa;
  border: 1px #d8cfcf solid;
  border-radius:30px;
}

.google-icon {
    width: 20px;
    height: 20px;
    position: absolute; 
    left: 10px; 
  }
  .apple-btn {
    width: 100%;
    background-color: black; 
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
    border: 1px #d8cfcf solid;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: none;
    border-radius:30px;
}

.apple-btn:hover {
  background-color: black;
  border: 1px #d8cfcf solid;
  color: white;
  border-radius:30px;
}

.apple-icon {
    width: 20px;
    height: 20px;
    position: absolute; 
    left: 10px; 
  }
  
  .facebook-btn {
    width: 100%;
    background-color: #4267B2; /* Facebook blue */
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
    border: 1px #8e8a8a solid;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* To position the icon and text */
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: none;
    border-radius:30px;
}

.facebook-btn:hover {
    background-color: #365899; /* Darker Facebook blue for hover */
    color: white;
    border-radius:30px;
}

.facebook-icon {
    width: 20px;
    height: 20px;
    position: absolute; /* Place it at the start of the button */
    left: 10px; /* Adjust the spacing from the left */
  }
  .verify-code{
    text-align:center !important;
    font-weight:bold !important;
    border:1px solid black !important;
    margin:0 5px !important;
  }

  @media screen and (max-width: 430px) {
    .verify-code{
      padding: 10px 10px 10px 10px !important;
    }
  }