.accountCard {
  background-color: aqua;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #dbeffd 0%, #a7caff 100%);
}

main {
  width: 100vw;
  height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main.login {
  height: 100vh;
}

form {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 33.6px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 35px 25px;
  gap: 15px;
  min-width: 30vw;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  border: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 0px 2.6px 0px #4789e8;
  padding: 15px;
  font-family: "Inter", sans-serif;
  transition: box-shadow 0.3s ease;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover {
  box-shadow: 0px 0px 2.6px 0px #3973c7;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
  outline: none;
  box-shadow: 0px 0px 5px 2px #4789e8;
}

input[type="submit"] {
  border: none;
  border-radius: 15px;
  background: #4789e8;
  padding: 14px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="submit"]:hover {
  background: #3973c7;
}

h1 {
  color: #4789e8;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 10px 0;
}

.odkaz {
  margin-top: 5px;
  font-size: 16px;
  text-decoration: none;
  color: #4789e8;
}

.odkaz:hover {
  text-decoration: underline;
}

.accounts {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 33.6px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 35px 25px;
  gap: 15px;
  min-width: 30vw;
}

.accounts a {
  flex: 1;
  text-decoration: none;
}

.accounts a:hover .accountCard {
  box-shadow: 0px 0px 4px 0px #3973c7;
  background: linear-gradient(180deg, #dbeffd 0%, #bad6ffc0 70%);
}

.accounts a:focus .accountCard {
  outline: none;
  box-shadow: 0px 0px 5px 2px #4789e8;
  background: linear-gradient(180deg, #dbeffd 0%, #bad6ffc0 70%);
}

.accounts a:hover .accountCard h2 {
  text-decoration: underline;
}

.accounts a:focus .accountCard h2 {
  text-decoration: underline;
}

.accountCard {
  border: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 2.6px 0px #4789e8;
  padding: 15px;
  font-family: "Inter", sans-serif;
  transition: box-shadow 0.3s ease;
}

.accountCard div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.accountCard h2 {
  color: #4789e8;
}

.accountCard p {
  color: rgb(29, 29, 29);
}

.noAccount p {
  text-align: center;
  font-size: 20px;
  margin-top: 50px;
  color: #4789e8;
  font-weight: 600;
}

.noAccount p a {
  text-decoration: none;
  color: #3973c7;
  font-weight: 800;
}
