*{
    margin: 0;
    padding: 0;
    font-family: "Comic Sans", sans-serif;
}
body {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/Images/background.jpg") no-repeat fixed;
    background-size: 100% 100%;
    overflow: auto;
    margin: 5rem;
}
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}
.form-box {
    border: solid 2px rgb(255, 255, 255);
    border-radius: 20px;
    position: relative;
    width: 400px;
    height: 600px;
    background: transparent;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50px);
}
h2 {
    color: rgb(255, 255, 255);
    font-size: 2em;
    text-align: center;
}
.input-box {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid rgb(255, 255, 255);
}
.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: rgb(255, 255, 255);
    font-size: 1em;
    font-weight: 600;
    pointer-events: none;
    transition: 0.3s;
}
input:hover ~ label,
input:focus ~ label,
input:valid ~ label {
    top: -5px;
}
.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    font-size: 1em;
    padding: 0 35px 0 5px;
}
.input-box ion-icon {
    position: absolute;
    right: 8px;
    top: 20px;
    color: rgb(255, 255, 255);
    font-size: 1.2em;
}

.input-select {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid rgb(255, 255, 255);
    font-size: 1em;
    font-weight: 600;
}
.input-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
}
.input-select select option {
    color: black;
    background-color: rgba(229, 233, 236, 0.14);
}
.input-select label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: rgb(255, 255, 255);
    font-size: 1em;
    font-weight: 600;
    pointer-events: none;
    transition: 0.3s;
}
select:hover ~ label,
select:focus ~ label,
select:valid ~ label {
    top: -5px;
}
.input-select select {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    font-size: 1em;
    padding: 0 35px 0 5px;
}
.input-select ion-icon {
    position: absolute;
    right: 8px;
    top: 20px;
    color: rgb(255, 255, 255);
    font-size: 1.2em;
}

.generateButton {
    transform: translateY(5px);
    width: 100%;
    height: 30px;
    border-radius: 15px;
    border-width: 2px;
    border-color: rgb(255, 255, 255);
    background: transparent;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.15s, color 0.15s;
}
.generateButton:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
.email-box {
    border: solid 2px rgb(255, 255, 255);
    border-radius: 20px;
    position: relative;
    width: 800px;
    min-height: 0;
    background: transparent;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(50px);
    padding: 10px 15px 10px 15px;
}
#output {
    display: none;

}
.paragraphs {
  width: 100%;
}
p {
    margin: 15px;
    width: auto;
    color: rgb(255, 255, 255);
    font-size: 1em;
    white-space: pre-line;
}
.input-tooltip {
    position: relative;
    transform: translateY(-50px);
}
.input-tooltip ion-icon {
    transform: translateX(25px);
    font-size: 1.2em;
    color: rgb(0, 255, 255);
}
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.tooltip-text {
    visibility: hidden;
    position: absolute;
    width: 150px;
    color: white;
    font-size: 11px;
    background: transparent;
    border-radius: 20px;
    /*backdrop-filter: blur(15px);*/
    /*border: solid 2px rgb(255, 255, 255);*/
    padding: 10px 15px 10px 15px;
    opacity: 0;
    transition: opacity 0.2s;
    transition-delay: 1s;
}
.input-tooltip .tooltip-text {
    transform: translateX(410px);
}
.draggable-container {
    margin: 0;
    padding: 0;
}
.draggable {
    cursor: move;
}
.draggable.dragging {
    opacity: .5;
}
.copyButton {
    border: none;
    display: flex;
    position: relative;
    transform: translateY(-32px) translateX(-375px);
}
.copyButton button {
    border: none;
    background: transparent;
    width: 25px;
    height: 25px;
}
.copyButton ion-icon {
    font-size: 2em;
    color: rgb(255, 255, 255);
    position: relative;
    transition: color 0.15s;
}
.copyButton:hover ion-icon {
    color: rgb(185, 180, 180);
}
.output-tooltip {
    position: relative;
    transform: translateY(-50px);
}
.output-tooltip ion-icon {
    transform: translateY(-10px) translateX(375px);
    font-size: 2em;
    color: rgb(0, 255, 255);
}
.output-tooltip .tooltip-text {
    transform: translateY(-10px) translateX(200px);
}
@media only screen and (max-width: 800px) {

    .form-box {
        width: 300px;
        height: 600px;
    }
    .input-box {
        width: 233px;
    }
    .input-select {
        width: 233px;
    }
    .generateButton {
        width: 233px;
    }
    .input-tooltip .tooltip-text {
        transform: translateX(308px);
    }
    .output-tooltip .tooltip-text {
        transform: translateX(100px);
    }
    .email-box {
        width: 600px;
    }
    .copyButton {
        transform: translateX(-279px);
    }
    .output-tooltip ion-icon {
        transform: translateY(20px) translateX(279px);
    }
}
@media only screen and (max-width: 650px) {
	
  .email-box {
	width: 100%;
  }
}