.intro {
    margin: auto;
    width: 100%;
    background-color: hsl(215, 19%, 30%);
}

.intro-text {
    text-align: center;
    margin: auto;
    width: 65%;
    padding-bottom: 1.5em;
}

.intro-text h1 {
    padding: 0;
    font-size: 3.5rem;
    padding-bottom: .125em;
    color: hsl(215, 19%, 65%);
}

.intro-text p {
    color: hsl(215, 19%, 65%);
    font-size: 1.5rem;
}





form {
    margin: 3em auto;
    width: 65%;
    padding: 2.5% 7.5%;
    background-color: hsl(215, 19%, 40%);
    border-radius: 2em;
    border: 2px solid hsl(215, 19%, 35%);
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(215, 19%, 20%);
}

.simple-info {
    display: flex;
    line-height: 2.25rem;
}

.simple-info p {
    padding: 0px;
    margin-bottom: -.65rem;
}

.simple-info input {
    align-self: flex-end;
    height: 1.4em;
    background-color: hsl(215, 19%, 35%);
    border: 1px solid hsl(215, 19%, 15%);
    color: hsl(215, 19%, 25%);
    font-weight: 700;
}

.simple-info input:active {
    background-color: hsl(215, 19%, 25%);
    border: 1px solid hsl(215, 19%, 10%);
    outline-style: solid;
    outline-width: 2px;
    outline-color: hsl(215, 19%, 20%);
}

.simple-info:focus {
    background-color: hsl(215, 19%, 35%);
    border: 1px solid hsl(215, 19%, 15%);
    outline-style: none;
    outline-width: 2px;
    outline-color: hsl(215, 19%, 25%);
}

form label input::placeholder {
    padding: 0em .5em;
    color: hsl(215, 19%, 25%);
    font-weight: 700;
}

#coolness-input {
    margin: auto 0;
    border: none;
    outline-style: none;
    accent-color: hsl(215, 19%, 25%);
}

#coolness input:active {
    margin: auto 0;
    accent-color: hsl(215, 19%, 25%);
    border: none;
}

.country-code {
    border-right: 0;
}





.contact textarea {
    padding: 1em;
    font-size: 1em;
    width: 100%;
    max-width: max-content;
    border: 2px solid hsl(215, 19%, 35%);
    border-radius: 1em;
    background-color: hsl(215, 19%, 35%);
}

.contact textarea::-webkit-resizer {
    display: none;
}

.contact textarea:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: hsl(215, 19%, 25%);
    background-color: hsl(215, 19%, 32.5%);
}





.choose-one fieldset {
    padding: 1em;
    border: 2px solid hsl(215, 19%, 35%);
    border-radius: 1em;
    background-color: hsl(215, 19%, 35%);

}

.selection-row {
    display: flex;
    align-content: center;
    align-items: center;
    padding: .5em;
}

.selection-row input {
    accent-color: hsl(215, 19%, 25%);
    filter: grayscale();
}





.reason {
    flex-direction: column;
}

.reason fieldset {
    padding: .75em 1.25em;
    border: 2px solid hsl(215, 19%, 25%);
    border-radius: 1em;
}

.reason label {
    display: block;
    margin: 1em 0;
}

.reason input {
    accent-color: hsl(215, 19%, 25%);
    filter: grayscale();
}





.color-choice {
    margin-left: 1.5em;
    margin-right: auto;
    margin-top: 1em;
    height: 3em;
    width: 3em;
    border: 2px solid hsl(215, 19%, 25%);
    padding: 0 .1em;
    background-color: hsl(215, 19%, 40%);
}





.user-photo {
    margin-right: auto;
    margin-left: 1.5em;
    padding: .5em 1em;
    border-radius: 2em;
    display: flex;
    align-items: center;
    height: fit-content;
    width: fit-content;
    color: hsl(215, 19%, 20%);
    background-color: hsl(215, 19%, 30%);
    font-weight: 700;

}

.user-photo::file-selector-button {
    font-weight: 800;
    color: hsl(215, 19%, 15%);
    background-color: hsl(215, 19%, 30%);
    padding: 0px 5px;
    border-radius: 1em;
    border: none;
}

.user-photo::file-selector-button:hover {
    color: hsl(215, 19%, 10%);
    background-color: hsl(215, 19%, 25%);
}





.submit {
    display: block;
    margin: auto;
    width: fit-content;
    border: 2px solid hsl(215, 19%, 30%);
    border-radius: 2em;
    background-color: hsl(215, 19%, 35%);
    font-weight: 900;
    padding: .5em 1em;
    color: hsl(215, 19%, 15%);
}

.submit:hover {
    background-color: hsl(215, 19%, 30%);
    border: 2px solid hsl(215, 19%, 25%);
    color: hsl(215, 19%, 10%);
}