/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: white;
  }
  
  .container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #132749;
  }
  
  .form-group {
    margin-bottom: 15px;
    
  }
  .form-group:first-child{
    width: 100%;
    display: flex;
    justify-content: center;

  }
  .user-image{
    border: 1px solid gray;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .user-image p{
    font-size: 10px;
    font-family: monospace;

  }
  label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="tel"]:focus {
    outline: none;
    border-color: #4d90fe;
  }

  .submit-btn,.login{
    display: block;
    width: 100%;
    background-color: #00B894;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  .login{
    background-color: #132749;
    
  }
  .login a{
    color: white;
    text-decoration: none;
  }
  .submit-btn:hover,.login:hover{
    background-color: #0e1a33;
  }
  
  .submit-btn-center,.login {
    display: flex;
    justify-content: center;
  }
  
  