﻿    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, Helvetica, sans-serif;
    }

    body, html {
      height: 100%;
    }

    body {
      background: url('../img/Background.jpg') no-repeat center center fixed;
      background-size: cover;
    }

    /* Botão Login (topo direito) */
    .top-bar {
      position: absolute;
	  border:1px none white;
	  background-color: rgba(255, 255, 255, 0.5);
	  width:100%;
	  padding:6px;
      top: 0px;
	  left:0px;
      right: 0px;
    }

    .login-btn {
      padding: 10px 20px;
      background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }

    .login-btn:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    /* Modal de Login */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      align-items: center;
      justify-content: center;
    }

    .modal-content {
      background: #fff;
      padding: 30px;
      width: 320px;
      border-radius: 6px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .modal-content h2 {
      margin-bottom: 20px;
      font-size: 20px;
    }

    .modal-content input {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

    .connect-btn {
      width: 100%;
      padding: 10px;
      background-color: #2c7be5;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 15px;
      cursor: pointer;
    }

    .connect-btn:hover {
      background-color: #1a68d1;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 18px;
      cursor: pointer;
      color: #666;
    }
    .systemname{
		font-family:Abel;
		font-size:10px;
		color: #fff;
	}