/* CSS Reset */
html,body,div,span,applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}



table {
  border-collapse: collapse;
  border-spacing: 0;
}


.container {
  width: 100%;
  max-width: 700px;
  margin: 25px auto;
  padding: 0 5px;
  box-sizing: border-box;
  position: relative;
  
  
}

@media screen and (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }
}

body {
  overflow-x: hidden;
  color: #2f6280;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #87CEEB;
  background-image: linear-gradient(to bottom, #87CEEB, #FFFFFF);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -10;
}



form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin: 10px;
}

.button-container button {
  display: flex;
  font-family: serif;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #7BC74D;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  max-width: 600px;
  font-size: 15px;
  box-shadow:
    1.8px 1.8px 0.7px rgba(0, 0, 0, 0.007),
    3.5px 3.5px 1.2px rgba(0, 0, 0, 0.011),
    5px 5px 2px rgba(0, 0, 0, 0.02);
}

.x {
  width: 50%;
  margin: 10px;
}

.button:hover {
  background-color: rgb(119, 208, 94);
}

.button-container button:hover {
  cursor: pointer;
  background-color: rgb(119, 208, 94);
}

h1 {
  font-family: 'Pacifico', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-shadow:
    1px 1px 0.6px rgba(0, 38, 98, 0.15),
    2px 2px 0.9px rgba(0, 19, 39, 0.12),
    3px 3px 1.3px rgba(0, 35, 89, 0.16),
    4px 4px 2px rgba(0, 20, 37, 0.25);

  text-align: center;
  margin: 15px 5px;
}

.softbox h1 {
  font-weight: 400;
  color: #2f6280;
  text-shadow: 3px 3px 2.6px rgba(255, 255, 255, 0.082);
}

.login a,
a,
a:visited,
a:hover {
  color: #2f6280;
  text-decoration: underline;
}


.softbox {
  font-size: 1.1rem;
  width: 70%;
  margin: 10px auto;
  font-family: serif;
  color: #38678d;
  padding: 10px;
  border-radius: 10px;
  line-height: 1.5;
  position: relative;
  background: #ffffffab;
  text-align: center;

}



blockquote span {
  display: block;
  color: #333333;
  font-style: normal;
  font-weight: normal;
  margin: 0.5em;
  font-size: 1.0rem;
  font-style: italic;

}

.softbox hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(31, 57, 70, 0), rgba(46, 108, 139, 0.75), rgba(31, 57, 70, 0));
}

.emoji {
  font-size: 40px;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;

}

.remember-button-container {
  height: 100px;
  display: inline-block;
}


.button {
  display: inline-block;
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  font-family: Pacifico;
  text-shadow: 2px 2px rgb(16, 29, 20);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
}

.button.skip {
  background-color: #777777;
  color: #cccccc;
  text-shadow: none;
  font-size: 14px;
}

#message {
  width: 80%;
  height: 6em;
  font-size: 14px;
  border: 1px ridge #9e9e9e;
  border-radius: 10px;
  padding: 20px;
  font-family: Pacifico, serif;
  background: aliceblue;
  margin-top: 10px;
}

.slider-container {
  margin-top: 10px;
  width: 90%; 
  max-width: 500;
}

.slider-text {
  display: flex;
  justify-content: space-between;

}

.slider-text p {
  font-family: Pacifico, serif;
  color: #2f6280;
  font-size: 16px;
  margin: 5px;
}

.softbox ul {
  text-align: left;
  margin:10px;
}
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
  border-width: 1px;
  border-color: white;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #7BC74D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 70%;
  background: #7BC74D;
  cursor: pointer;
}


.login {
  width: 90%;
  max-width: 400px;
  margin: 100px auto 20px auto; 
}

.security {
  width: 90%;
  max-width: 400px;
  margin: 25px auto;
}

.login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}


.login form input[type=text],
.login form input[type=password] {
  background-color: #ffffff;
  margin: 10px;
  line-height: 40px;
  width: 50%;
  border-radius: 10px;
  text-align: center;
  font-family: Pacifico, serif;
  font-size: 1em;
  border-style: solid;
  outline: #2f6280;
}

input:focus {
  outline: #2f6280;
  border-width: 2px;
  border-style: dashed;
}

.cloud {
  position: fixed;
  z-index: -1;
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 200px;
  height: 100px;
  top: 0px;
  left: 0px;
  box-shadow: 0 20px 30px rgba(114, 38, 255, 0.1);
  animation: float 20s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 50%;
}

.cloud::before {
  width: 100px;
  height: 80px;
  top: -30px;
  left: 30px;
}

.cloud::after {
  width: 80px;
  height: 60px;
  top: -10px;
  right: 30px;
}

@keyframes float {
  0% {
    transform: translateX(-20px) translateY(10px);
  }

  50% {
    transform: translateX(20px) translateY(-10px);
  }

  100% {
    transform: translateX(-20px) translateY(10px);
  }
}

.week-container {
  width: 90%;
  max-width: 500px;
  margin: 70px auto;
}


.week-container hr {
  border: 0;
  height: 1px;
  margin: 0px;
  background-image: linear-gradient(to right, rgba(31, 57, 70, 0), rgba(46, 108, 139, 0.75), rgba(31, 57, 70, 0));
}

.week-entry {
  padding: 0px;
}

.week-entry-title {
  display: grid;
  grid-template-columns: 30px 0.5fr 1fr 0.7fr;
  align-items: center;
  padding: 3px;
  margin: 0px;
}

.week-entry-title>* {
  padding: 2px;
  margin: 2px;
}

.week-entry-detail p {
  margin: 3px 10px 15px 35px;
}

.week-entry-detail p {
  font-style: italic;
}

.top-bar {
  position: fixed;
  top:0px;
  height: 30px;
  background-image: linear-gradient(to top, #87CEEB00, #AEEFFF);
  z-index: 100;
  width: 100%;
  padding: 5px 20px 20px 20px;
  display: flex;
  justify-content: space-between;
}

#install_infobox h1{
 margin:3px;
 font-size: 0.5rm;
}