@import url("https://fonts.googleapis.com/css?family=Delius&display=swap");

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0 auto;
  min-height: 100vh;
  max-width: 1200px;
  background-color: #000;
  background-image: url("https://www.losarcanos.com/images/fondoarcanos19-min.webp");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-family: Delius, Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-align: center;
}

a,
a:active,
a:visited,
a:link {
  color: #d9e9ff;
  text-decoration: none;
}

a:hover {
  color: #99ffff;
  text-decoration: underline;
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 12px;
  background: rgba(0, 0, 0, 0.2);
}

.login-panel {
  width: min(100%, 430px);
  border: 2px solid #795548;
  border-radius: 10px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(13, 71, 161, 0.72), rgba(1, 1, 3, 0.92)),
    rgba(0, 0, 0, 0.72);
  box-shadow: 3px 6px 18px rgba(255, 255, 255, 0.42);
}

.wide-panel {
  width: min(100%, 680px);
}

.brand {
  display: inline-block;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: #06f 2px 2px 4px;
}

h1 {
  display: block;
  margin: 0 0 22px;
  padding: 8px;
  color: #fff;
  font-family: Delius, Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 30px;
  text-shadow: #06f 2px 2px 4px;
  text-transform: uppercase;
}

.login-form {
  display: grid;
  gap: 10px;
  text-align: left;
}

label {
  color: #eaf3ff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
}

input {
  width: 100%;
  border: 1px solid #9fa8da;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: #110f47;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 12px;
  outline: none;
}

input:focus {
  border-color: #99ffff;
  box-shadow: 0 0 0 3px rgba(153, 255, 255, 0.28);
}

button,
.button-link {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #06395b;
  border-radius: 10px;
  background: #3e779d;
  background: linear-gradient(180deg, #65a9d7, #1a237e);
  color: #fff;
  cursor: pointer;
  font-family: Delius, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 2px #000;
}

button:hover,
.button-link:hover {
  background: linear-gradient(180deg, #76c4f8, #0d47a1);
  color: #fff;
  text-decoration: none;
}

.secondary {
  background: linear-gradient(180deg, #7986cb, #010103);
}

.danger-btn {
  background: linear-gradient(180deg, #ff5252, #7f0000);
}

.social-area {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.social-btn {
  margin-top: 0;
  background: linear-gradient(180deg, #7c9dc9, #010103);
}

.small {
  margin: 16px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 120%;
}

.text-block {
  text-align: left;
}

.text-block h2 {
  margin: 18px 0 4px;
  color: #fff;
  font-size: 22px;
  line-height: 24px;
  text-shadow: #06f 2px 2px 4px;
  text-transform: uppercase;
}

.text-block p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 130%;
}

.delete-form {
  margin-top: 22px;
  text-align: left;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.check-row input {
  width: auto;
  margin-top: 2px;
}

.alert {
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 12px;
  text-align: left;
}

.alert-error {
  background: rgba(255, 23, 68, 0.92);
  color: #fff;
}

.alert-success {
  background: rgba(0, 200, 83, 0.9);
  color: #fff;
}

.avatar {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border: 2px solid #9fa8da;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(153, 255, 255, 0.45);
}

.account-data {
  display: grid;
  gap: 6px;
  margin: 0;
  text-align: left;
}

.account-data dt {
  color: #99ffff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
}

.account-data dd {
  margin: 0 0 12px;
  color: #fff;
}

@media (max-width: 520px) {
  .login-panel {
    padding: 22px 16px;
  }

  h1 {
    font-size: 26px;
    line-height: 28px;
  }
}
