/* ===== ALAP OLDAL ===== */

body{
  margin:0;
  background:#9b9b9b;
  font-family:"Times New Roman", Georgia, serif;
}

.page{
  width: min(1200px, 96vw);
  margin: 20px auto;
  background:#e9f0ef;
  border:1px solid #6c7a78;
  min-height: calc(100vh - 40px);
  display:flex;
  flex-direction:column;
}

/* ===== FELSŐ SÁV ===== */

.top{
  background:#c7d2d0;
  padding:20px;
  border-bottom:2px solid #2d7b57;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.left-top{
  display:flex;
  align-items:center;
  gap:20px;
}

/* LOGÓ */
.logo{
  height:62px;          /* +25% */
  width:auto;
  display:block;
}

/* ÉLŐ ÓRA */
.clock{
  font-size:22px;
  font-weight:700;
  color:#1f2b2a;
  white-space:nowrap;
}

/* ===== KÖZÉPSŐ RÉSZ ===== */

.middle{
  flex:1;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ===== BELÉPÉSI ABLAK ===== */

.login-box{
  width:360px;
  background:#e9f0ef;
  border:1px solid #6c7a78;
  box-shadow:0 8px 22px rgba(0,0,0,0.18);
  padding:26px 28px 24px;
}

.login-title{
  font-size:22px;
  font-weight:700;
  text-align:center;
  margin-bottom:22px;
  color:#1f2b2a;
  border-bottom:2px solid #2d7b57;
  padding-bottom:6px;
}

.login-row{
  display:flex;
  flex-direction:column;
  margin-bottom:14px;
}

.login-row label{
  font-size:15px;
  margin-bottom:4px;
  color:#1f2b2a;
}

.login-row input{
  width:100%;
  box-sizing:border-box;  
  height:34px;
  font-size:16px;
  padding:4px 8px;
  border:1px solid #6c7a78;
  background:#f7faf9;
  color:#1f2b2a;
}

.login-row input:focus{
  outline:none;
  border-color:#2d7b57;
}

.login-btn{
  margin-top:18px;
  width:140px;
  height:34px;
  font-size:15px;
  font-weight:700;
  border:1px solid #2d7b57;
  background:linear-gradient(#3a8f6a,#2d7b57);
  color:#fff;
  cursor:pointer;
}

.login-btn:hover{
  background:linear-gradient(#34966e,#276c4d);
}

.login-btn:active{
  transform:translateY(1px);
}

/* ===== ALSÓ SÁV ===== */

.bottom{
  background:#c7d2d0;
  padding:15px;
  border-top:1px solid #6c7a78;
  text-align:center;
  font-size:16px;
}
