/* LOGIN*/

 body {
      margin: 0;
      height: 100vh;
      background: url('https://itamambucaecoresort.com.br/img/back_ita_login.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
    }

    .login-card h3
        {
            text-align: center;
            margin-bottom: 25px;
            font-weight: 400;
            letter-spacing: 1px;
            color: #354a67;
        }

        .login-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 400px;
            width: 100%;
        }

        .login-card img {
            max-width: 150px;
            margin: 0 auto 30px;
            display: block;
        }

        .form-control {
            display: block;
            width: 100%;
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: var(--bs-body-color);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-color: var(--bs-body-bg);
            background-clip: padding-box;
             border: 2px solid #e9ecef;
            border-radius: 10px;
            transition: border-color .15s 
            ease-in-out, box-shadow .15s 
            ease-in-out;
        }

        .form-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }

        .btn-login {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .alert {
            border-radius: 10px;
            border: none;
        }

        .debug-info {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            font-size: 12px;
            max-height: 200px;
            overflow-y: auto;
        }

        .debug-info h6 {
            color: #666;
            margin-bottom: 10px;
        }

        .debug-info pre {
            margin: 0;
            font-size: 11px;
            color: #333;
        }


        .btn-login {
            width: 100%;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            padding: 12px;
            background:  linear-gradient(45deg, #1e3c72, #2e67c9ff);
            border-width: initial;
            border-style: none;
            border-color: initial;
            border-image: initial;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: rgba(102, 126, 234, 0.4) 0px 5px 20px;
        }