#view-login {
    background: url("../assets/fundo.png") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: #fff;
  }
  
  .card h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 30px;
    color: #fff;
  }
  
  .divider {
    width: 80px;
    height: 4px;
    background: #007BFF;
    border-radius: 4px;
    margin: 10px auto 30px;
  }
  
  .card label {
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
  }
  
  .card input {
    width: 100%;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
  }
  
  .card input::placeholder {
    color: rgba(255,255,255,0.7);
  }
  
  .btn-login {
    background-color: #007BFF;
    color: #fff;
  }
  
  .btn-register {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    color: #fff !important;
  }
  