    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background-image: url('./fondo.svg');
      background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-container {
      background-color: white;
      width: 100%;
      max-width: 420px;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .logo {
      display: block;
      margin: 0 auto 10px;
      height: 24px;
    }

    .email-display {
      margin: 10px auto 15px;
      padding: 6px 14px;
      border-radius: 20px;
      background-color: #f3f3f3;
      font-size: 14px;
      color: #000;
      width: fit-content;
    }

    h2 {
      font-size: 25px;
      margin-bottom: 5px;
      font-weight: 500;
    }

    p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #333;
    }

    .input-group {
      position: relative;
      margin-bottom: 5px;
      text-align: left;
    }
	  
	  .input-group input:focus
	  
	  
	  {
		  border-bottom-style: solid;
		border-bottom-color: #0067c5;
		  border-bottom-width: 2px;
	  }
	  

    .input-group input {
      width: 100%;
      padding: 14px 12px 6px 12px;
      font-size: 16px;
      border: 1px solid #888;
      border-radius: 4px;
      outline: none;
		
    }
	
	  

    .input-group label {
      position: absolute;
      top: 14px;
      left: 12px;
      font-size: 16px;
      color: #666;
      pointer-events: none;
      transition: all 0.2s ease;
      background: white;
      padding: 0 4px;
    }

    .input-group input:focus + label,
    .input-group input:not(:placeholder-shown) + label {
      top: -8px;
      font-size: 12px;
      color: #0078d4;
		
		
    }

    .error-message {
      color: #e81123;
      font-size: 13px;
      margin-bottom: 15px;
      display: none;
      text-align: left;
    }

    .link {
      display: block;
      margin: 10px 0 25px;
      color: #0067c5;
      text-decoration: none;
      font-size: 14px;
      text-align: left;
    }

    .btn {
      width: 100%;
      padding: 12px;
      background-color: #0067c5;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
      margin-bottom: 20px;
      position: relative;
      transition: background-color 0.3s ease;
    }

    .btn.loading {
      color: transparent;
    }

    .btn .spinner {
      width: 20px;
      height: 20px;
      border: 2px solid #666;
      border-top-color: transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
    }

    .btn.loading .spinner {
      display: block;
    }

    @keyframes spin {
      to {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    .footer-text {
      font-size: 14px;
    }

    .footer-text a {
      color: #0067c5;
      text-decoration: none;
    }
	  
	  
	  
	 @media (max-width: 700px) {
  .login-container {
	  
	  position: absolute;
	  top: 0;
	  max-width: 100%;
	  height: 100%;
	  margin: auto;
	  left: 0;
	  right: 0;
	  
  }
}
 
	  
	  
	  	 @media (max-width: 400px) {
      .input-group label {
      position: absolute;
      top: 14px;
      left: 12px;
      font-size: 12px;
      color: #666;
      pointer-events: none;
      transition: all 0.2s ease;
      background: white;
      padding: 0 4px;
    }

    .input-group input:focus + label,
    .input-group input:not(:placeholder-shown) + label {
      top: -8px;
      font-size: 8px;
      color: #0078d4;
		
		
    }
}
 