/* style.css - styl vzhledu napodobující layout obrázku (jednoduché) */

:root{
  --box-w: 360px;
  --accent-green: #74c11a;
  --muted: #6b7b86;
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
 }
body{
  margin:0;
  font-family: Source Sans Pro;
  color:#2b3b45;
  min-height:100vh;
  position:relative;
}

.page-bg{
  position:fixed;
  inset: 0;
  z-index: -1;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* jemný overlay aby kontrastoval box */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index:-1;
}

/* center */
.center-wrap{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Brand area */
.brand{
  text-align:center;
  margin-bottom:18px;
}
.site-name{
  margin:0;
  font-weight:700;
  letter-spacing:0.3px;
  font-size:28px;
}
.school{
  margin:6px 0 0 0;
  color:var(--muted);
  font-size:17px;
  color: #555555;
}

/* Login box */
.login-box{
  width:var(--box-w);
  background: #fff;
  border-radius:8px;
  box-shadow: 0 6px 18px rgba(18,38,49,0.08);
  padding:18px;
  border:1px solid rgba(0,0,0,0.04);
  margin-bottom:18px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.inputs input{
  width:100%;
  padding:10px 12px;
  margin-bottom:10px;
  border-radius:4px;
  border:1px solid #d6e3ea;
  background:#fbfeff;
  font-size:14px;
  outline:none;
  transition: box-shadow .12s, border-color .12s;
}
.inputs input:focus{
  border-color:#a9d3e6;
  box-shadow:0 0 0 3px rgba(169,211,230,0.25);
}

.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  margin:6px 0 12px;
  color:var(--muted);
}
.remember input{
  vertical-align:middle;
  margin-right:6px;
}
.remember {
  font-size: 13px;
  font-weight: 600;
  color: #555555;
}
.forgot {
  color:#627b88;
  text-decoration:underline;
  font-size:13px;
  font-weight: 600;
  display: none;
 }

.btn-submit{
  width:100%;
  padding:12px 14px;
  background: linear-gradient(180deg, #60c92b, #45b114);
  border:none;
  color:#fff;
  font-weight:700;
  border-radius:5px;
  font-size:15px;
  cursor:pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,0.06) inset;
}
.btn-submit:active{ transform:translateY(1px); }

/* App placeholders below */
.app-row{
  display:flex;
  gap:12px;
  margin-top:10px;
  justify-content:center;
}
.app-placeholder{
  width:140px;
  height:40px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.6);
  font-size:12px;
  color:#333;
}

/* footer small text */
.small{
  margin-top: 20px;
  font-size: 12px;
  color: #555555;
  margin-bottom: 5px;
}

/* responsive */
@media(max-width:420px){
  :root{--box-w:324px}
  .page-bg{background-position: top center;}
}
#info {
    height: 16px;
    width: 16px;
    background: #00a2e2;
    cursor: pointer;
    position: relative;
    left: 316px;
    top: -27px;
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
}