*{
  margin: 0;
  padding: 0;
  line-height: calc(1rem + 0.5rem);
}

*,
*::before,
*::after {
	box-sizing; border-box;
}

html { 
  scroll-behavior: smooth;
}

image,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
}


/* BOX MODEL EXAMPLE */
font-size: 2rem;
background color: blue;
width: 300px;
height: 100px;
padding: 16px;
border: 5px solid black;
margin: 0;
}


body {
  background-color: #dde2ec;
  font-family: poppins; arial, sans-serif; tahoma;
}

.form-container {
  margin: 6rem auto;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 30rem;
  background-color: white;
  box-shadow: 0 4rem 4rem -3rem #495161;
}

h1 {
  font-weight: 500;
  font-size: 1.5rem;
  color: black;
}

a:link { color: blue; } /* Unvisited link */
a:visited { color: purple; } /* Visited link */
a:hover { color: red; } /* Mouse over link */
a:active { color: yellow; } /* Active link */


input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input {
  border: 2px solid #d3d9f0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.3rem;
  height: 3.2rem;
  padding: 1rem;
}

input:focus, button:focus {
  border: 2px solid #2659ff;
}

input[type=submit] {
  margin: 2.4rem 0;
  background-color: #2659ff;
  border: none;
  color: white;
  font-size: 1.5rem;
  height: 4rem;
  border-radius: 4px;
  cursor: pointer;
} 

label {
  display: block;
  font-weight: 500;
  padding: 2rem 0 0.5rem;
}

.select-group {
  position: relative;
}

.button {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  border-radius: 0.3rem;
  height: 3rem;
  width: 100%;
  background-color: white;
  border: 2px solid #d3d9f0;
  position: relative;
}

.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
}

.dropdown {
  position: absolute;
  width: 100%;
  top: 7rem;
  box-sizing: border-box;
  border: 2px solid #d3d9f0;
  border-radius: .3rem;
  overflow: hidden;
}

.option {
  display: none;
}

.select-item {
  display: block;
  padding: 1rem;
  font-weight: 400;
  background-color: #FFFFFF;
  color: black;
}

.select-item:hover {
  background-color: #f2f2f2;
}

.hidden {
  display: none;
}
