* {	
  font-family: sans-serif;
  font-size: 16px; 
  color: #FFFFFF;
}

 body {
  background-image: url("kamil-porembinski-clouds.jpg");
  background-color: #0082C8;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
}


.container {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.child {
  width: 50em;
  height: auto;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4), 0 12px 40px 0 rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  position: relative;
}

.child-title {
  width: 100%;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: -3em;
  align-items: center;
}

.child-response {
  width: 50em;
  height: auto;
  text-align: center;
  position: absolute;
  padding: 0.5em;
  bottom: 5%;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4), 0 12px 40px 0 rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}

.error {
  color: #FF002D;
  font-weight: bold;
}

label {
  width: 80%;
  padding: 0.5em 1em;
  margin: 0.5em 10%;
  display: inline-block;
}

input[type=text], 
input[type=password],
input[type=url] {
  width: 80%;
  padding: 0.75em 1em;
  margin: 0.5em 10%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.75);
  border: 2px solid #003B5A;
  border-radius: 4px;
  box-sizing: border-box;
}

.input-container:focus-within,
input[type=text]:focus, 
input[type=password]:focus,
input[type=url]:focus {
  border: 2px solid #0072B0;
  outline: none;
}


/* Style the submit button */
button,
input[type=submit] {
  width: 80%;
  background-color: #0072B0;
  color: white;
  padding: 0.75em 1em;
  margin: 0.5em 10%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.input-container button:hover,
button:hover,
input[type=submit]:hover {
  background-color: #0079B9;
}


.input-container {
  position: relative;
  width: 80%;
  padding: 0px;
  margin: 0.5em 10%;
  border: 2px solid #003B5A;
  border-radius: 4px;
  box-sizing: border-box;
}

  
.input-container input {
  width: 55%;
  margin: 0px;
  border: none;
}

.input-container input:read-only {
  width: 35%;
  padding: 0.75em 1em;
  margin: 0px;
  display: inline-block;
  border: none;
  box-sizing: border-box;
  background: none;
}

.input-container input:focus {
  border: none;
  outline: none;  
}

.input-container button {
  background-image: url("refresh.png");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: 0px;
  padding: 0px;
  width: 3em;
}

.buttons-bar {
  position: relative;
  width: 80%;
  padding: 0px;
  margin: 0.5em 10%;
}

.buttons-bar button {
  float: left;
  width: 24%;
  margin: 0.5%;
}

.page-err-msg {
  width: 100%;
  position: absolute;
  top: 40%;
  font-size: 1.5em;
  font-weight: bold;
  align-items: center;
  text-align: center;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.page-err-num {
  width: 100%;
  position: absolute;
  top: 25%;
  font-size: 3em;
  font-weight: bold;
  align-items: center;
  text-align: center;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.3);
}


@media only screen and (orientation: portrait) and (max-width: 900px) {
    * {
        font-size: 20px;
    }
    .child {
        width: 100%;
    }
    .child-response {
        width: 100%;
    }
}

