body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
  }
  
  .password-recovery-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  
  .recovery-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px; 
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 50px 60px;
    text-align: center;
  }
  
  
  .recovery-box .logo{
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  
  .recovery-box h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  
  
  .recovery-box .input-phone{
    width: 90%;
    border-bottom: 1px solid rgb(216, 216, 216);
    padding-bottom: 20px;
   
  }
  .input-phone input{
    width: 100%;
    font-size: 18px;
    border: none;
  }

  .input-phone input:focus {
    outline: none;
    border-color: #218838;
  }
  
  .recovery-box a{
    width: 95%;
  }
  
  .recovery-box  button {
    width: 100%;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
  }
  
  .recovery-box button:hover {
    background-color: #218838;
  }