:root {
    --black: #000000;
    --dark-gray: #464646;
    --light-gray: #CACACA;
    --white: #FEFEFE;
    --orange: #FE8500;
  }

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

.login-box {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px 35px;
    text-align: center;
    margin: 30px;
}

.login-box img {
    /*width: 300px;*/
    margin-bottom: 20px;
}

  h2 {
    margin-bottom: 25px;
    color: var(--dark-gray);
  }

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  text-align: left; /* ensures label + inputs stay aligned */
}

input {
    width: 100%;
    padding: 20px 12px;
    margin: 0;
    box-sizing: border-box;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 30px;
    background-color: #fff;
    transition: 0.2s ease-in-out;
    margin: 20px 0;
}
input[type="checkbox"] {
	width: 40px;
}
input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(254,133,0,0.2);
}


  button {
    width: 100%;
    padding: 12px;
    background-color: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 42px;
    cursor: pointer;
    transition: 0.3s;
  }

  button:hover {
    background-color: var(--dark-gray);
  }

  .error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
  }

  footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: var(--dark-gray);
    font-size: 13px;
  }