html, body {
	font-family: 'Roboto';
	box-sizing: content-box;
    width: 100%;
    height: 100%;
    background: #fff;
    margin: 0px;
    padding: 0px;
    background: #eeeeee;
}

.main-wrapper {
	padding: 30px 20px;
}

form {
    max-width: 500px;
	margin: auto;
	display: flex;
	flex-direction: column;
	border: 1px solid #bcbcbc;
	border-radius: 5px;
	padding: 15px;
	background: white;
}

label {
	display: block;
	font-size: 0.8rem;
    flex: 1;
    min-width: 100%;
    color: #8a8a8a;
    padding-bottom: 7px;
}

input, textarea {
	display: block;
	width: 100%;
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    background-color: #f8f8f8;
    font-size: 15px;
    border: 1px solid #ededed;
    border-color: #d0d0d0;
    padding: 12px 12px;
    color: #8a8a8a;
    font-weight: 300;
    border-radius: 3px;
    transition: all ease 0.5s;
    margin-bottom: 15px;
    max-width: 100%;
    font-family: 'Roboto';
}

textarea {
    height: 200px;
    line-height: 17px;
}

#result {
    cursor: pointer;
}

.input-div {
}

button {
    height: 50px;
    padding: 5px 50px;
    border-radius: 3px;
    border: 0px;
    color: #FFF;
    text-transform: uppercase;
    padding: 5px 50px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all ease 0.5s;
    background-color: hsl(212, 60%, 35%);
}

#result-box {
	display: none;
	margin-top: 20px;
    padding: 10px;
    background: #f3f3f3;
    border-radius: 5px;
    transition: all ease 0.3s;
    border: 1px solid #bcbcbc;
    font-size: 12px;
    color: grey;
    text-align: center;
    cursor: pointer;
}

#error-box {
	display: none;
	margin-top: 20px;
    padding: 10px;
    background: red;
    border-radius: 5px;
    transition: all ease 0.3s;
    cursor: pointer;
}

#result-box:hover {
	background: #d4efcf;
}

#copyMessage {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}