/* style.css */

* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background: url('img/sekolah.png') no-repeat center center fixed;
    background-size: cover;
  }
  
  .overlay {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 51, 102, 0.85); /* biru laut transparan */
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    padding: 20px;
  }
  
  .container {
    background-color: rgba(255, 255, 255, 0.96); /* putih dengan sedikit transparansi */
    color: #003366; /* biru laut */
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    width: 90px;
    margin-bottom: 15px;
  }
  
  h1 {
    color: #007BFF; /* biru langit */
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 2px solid #007BFF;
    border-radius: 6px;
  }
  
  button {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #005fa3;
  } /*
  .result {
    margin-top: 20px;
  }
  
  .lulus {
    color: green;
    font-weight: bold;
  }
  
  .tidak {
    color: red;
    font-weight: bold;
  }
  */