.btn-form {
    display: flex;
    justify-content: center;
  }

.btn {
    display: flex;
    justify-content: center;     
    align-items: center;         
    width: 494px;
    height: 60px;
    background-color: #fff;
    border-radius: 10px;
    color: #2B56E1;
    text-decoration: none;        
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #932f18; 
  }