/* login.css - Estilização da página de login */

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .logo {
    max-width: 100%;
    height: auto;
    width: 300px;
    transition: width 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .logo {
      width: 250px;
    }
    
    .container {
      padding: 10px;
    }
    
    .logo-container {
      margin-top: 20px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      width: 200px;
    }
    
    body {
      padding: 10px;
    }
    
    .container {
      padding: 5px;
    }
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    color: #73EDE8;
    font-weight: bold;
  }
  
  input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #73EDE8;
    color: #000;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  input::placeholder {
    color: rgba(0, 0, 0, 0.3);
  }
  
  .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    flex-wrap: wrap;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .remember-me input {
    width: auto;
    margin-right: 5px;
  }
  
  .forgot-password {
    color: #73EDE8;
    text-decoration: none;
    font-size: 14px;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .login-button {
    background-color: #73EDE8;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    width: 50%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .login-button:disabled {
    background-color: rgba(115, 237, 232, 0.5);
    cursor: not-allowed;
    opacity: 0.7;
  }
  
  .login-button .fa-spinner {
    animation: spin 1s linear infinite;
  }
  
  .register-text {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    font-size: 14px;
  }
  
  .register-link, .company-login-link {
    color: #73EDE8;
    font-weight: bold;
    text-decoration: none;
  }
  
  .loader {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 3px solid #000;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    display: none;
  }
  
  .error-message {
    color: #ff4757;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
  }
  
  .success-message {
    color: #4CD964;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .modal-content {
    background-color: #121212;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
  }
  
  .modal-title {
    color: #73EDE8;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .modal-close:hover {
    color: #73EDE8;
  }
  
  .modal-form-group {
    margin-bottom: 20px;
  }
  
  .modal-button {
    background-color: #73EDE8;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .modal-button:hover {
    background-color: #5dd8d3;
  }
  
  /* Footer styles */
  footer {
    margin-top: 40px;
    text-align: center;
    color: #555;
    font-size: 12px;
    padding-bottom: 20px;
  }
  
  /* Notificações */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification i {
  font-size: 20px;
}

.notification-info {
  background: #3498db;
  color: white;
}

.notification-success {
  background: #2ecc71;
  color: white;
}

.notification-error {
  background: #e74c3c;
  color: white;
}

.notification-warning {
  background: #f39c12;
  color: white;
}

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }