* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
  }
  
  .login-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2vh 2vw;
  }
  
  .exchange-box {
    background-color: white;
    width: 100%;
    max-width: 420px;
    padding: 5vh 5vw;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .container1 {
    text-align: center;
    margin-bottom: 2vh;
  }
  
  #nurse img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .title {
    text-align: center;
    color: #0078d4;
    font-size: 1.5rem;
    margin-bottom: 2vh;
    font-weight: bold;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #333;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  button {
    width: 100%;
    background-color: #0078d4;
    color: white;
    padding: 12px;
    border: none;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  button:hover {
    background-color: #005a9e;
    transform: scale(1.06);
  }
  
  .footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #777;
  }

  
  /*DISEÑO PARA MOVILES*/
  @media screen and (min-width: 768px) {
    .exchange-box {
      padding: 60px 50px;
      max-width: 600px;
    }
  
    .title {
      font-size: 2rem;
    }
  
    input[type="text"],
    input[type="password"],
    button {
      font-size: 1.1rem;
      padding: 14px;
    }
  
    #nurse img {
      max-width: 350px;
    }
  }
  