:root{
    --primary-color: #00C4C4;
    --primary-light-color: #90DEDE;
    --secondary-color: #004545;
    --secondary-light-color: #008F8F;
    --tertiary-color: black;
    --tertiary-light-color: ;
}

*{
	font-family: sans-serif; 
}

body{
	display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #0c2646 0%, #204065 60%, #2a5788 100%);
}

.parent-selector{
 
  /*position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  background-color: var(--primary-light-color);
  border-radius: 5px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  padding:20px;
}

.list-image{
    display: flex;
    flex-direction: column;
}

.list-image > img{
  border: solid 3px transparent;
  border-radius: 2px;
  align-self: center;
  margin: 10px;
  width: 300px;
  height: 300px;
  cursor: pointer;
}

.list-image > img:hover{
  border: solid 3px var(--secondary-light-color);
  border-radius: 2px;
}

.list-image > img.active{
  border: solid 3px var(--tertiary-color);
  border-radius: 2px;
}

.view-image > img{
  max-width: 300px;
  max-height: 300px;
  padding: 10px;
}

/* INPUT TEXT */

.input-div {
  position: relative;
  padding: 15px;
}

.input-text {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #242424;
  outline: 0;
  font-size: 12px;
  color: #242424;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.input-text::placeholder {
  color: transparent;
}

.input-text:placeholder-shown ~ .input-label {
  font-size: 14px;
  cursor: text;
  top: 20px;
}

label,
.input-text:focus ~ .input-label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: #242424;
}

.input-text:focus ~ .input-label {
  color: #242424;
}

.input-text:focus {
  padding-bottom: 6px;
  border-bottom: 2px solid #242424;
}

/* BUTTON */

.button{
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--secondary-color);
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid transparent;
}
.button:hover{
   background-color: var(--secondary-light-color);
}
.button:active{
   background-color: var(--secondary-color);
}

.button > span{
  color: var(--primary-light-color);
}

.buttons{
    display: flex;
}

.buttons > button{
    width: 40%;
}

p{
    font-size: 14px;
    text-align: center;
}