body,
html {
  height: 100%;
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: #f5f5f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  text-align: center;
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

.icloud-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 30px;
}

.input-group {
  position: relative;
  margin-bottom: 0;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  font-size: 17px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease;
}

input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

input[type="password"] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

input:focus {
  border-color: #0071e3;
  z-index: 2;
}

.signin-button {
  margin-top: 25px;
  background-color: #0071e3;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.signin-button:hover {
  background-color: #0077ed;
}

.footer-links {
  margin-top: 40px;
  font-size: 14px;
  color: #06c;
  text-decoration: none;
}

.footer-links a {
  color: #06c;
  text-decoration: none;
  margin: 0 10px;
}

.keep-signed-in {
  margin-top: 20px;
  font-size: 14px;
  color: #86868b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.keep-signed-in input {
  margin-right: 8px;
}
