/* styles.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
  }
  
  .container {
    width: 400px;
    background-color: #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .header {
    background-color: #f57c00;
    padding: 20px;
    text-align: center;
    position: relative;
  }
  
  .header h1 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .header .subtitle {
    font-size: 14px;
  }
  
  .logout {
    position: absolute;
    top: 20px;
    font-size: 2rem;
    color: black;
    text-decoration: none;
  }
  
  .logout.right {
    right: 20px;
  }
  
  .logout:first-of-type {
    left: 20px;
  }
  
  .content {
    padding: 20px;
    text-align: center;
  }
  
  .content h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form label {
    font-size: 16px;
  }
  
  .form input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #f57c00;
    border-radius: 4px;
  }
  
  .radio-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .radio-options {
    display: flex;
    gap: 20px;
  }
  
  .radio-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
  }
  
  .radio-button {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f57c00;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    position: relative;
  }
  
  input[type="radio"]:checked + .radio-button {
    background-color: #4169e1;
  }
  

 .submit {
  background-color: #f57c00;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
 }
  .back {
    background-color: #f57c00;
    color: white;
    border: 2px solid;
    border-color: black;
    padding: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 5px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #e66a00;
  }
  .footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}
  