@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Permanent Marker&display=swap");

/*!****************************************************/
/*Global*/
/****************************************************!*/

:root {
    --main: #A9A9A9;
    --dark: #4C4C4C;
    --light: #EFEFEF;
    --accent: #ff3b3f;
    --secondary: #CAEBF2;
    --nav-color: #E0E0E0;
    --green-color: #5cb85c;
    --red-color: #d9534f;
    --slash-height: 4vh;
    --slash-height-neg: -4vh;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.accent-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: max(50vw - 300px, 250px);
    height: 100%;
    color: var(--accent);
    white-space: nowrap;
    overflow: visible;
    z-index: -1;
}

.clipped {
    clip-path: ellipse(120% 120% at -20% -30%);
    color: white;
    background-color: var(--accent);
}

.accent-shape h1 {
    position: absolute;
    left: max(20px, 50vw - 530px);
    font-size: 35px;
    font-weight: 400;
}

.page-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: center;
}

header {
    position: relative;
}

header h1 {
    font-size: 35px;
    font-weight: 400;
    opacity: 0;
}

.main-container {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 5vh 0;
}

aside {
    flex: 0 0 250px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

aside i {
    position: absolute;
    color: var(--light);
    font-size: 150px;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
    z-index: 9;
}

main {
    flex: 1 1 500px;
    padding-left: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    background-color: rgba(255, 255, 255, 0.95);
    border: 0;
    border-radius: 15px;
    z-index: 10;
}

main h1 {
    font-weight: 300;
    font-size: 40px;
    margin: 20px 0;
}

main h2 {
    font-weight: 300;
    font-size: 25px;
}

.form-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.form-container > * {
    margin-right: 20px;
    flex: 1 1 325px;
}

label {
    display: block;
    margin: 20px 0 10px 0;
}

input {
    display: block;
    background-color: #fafafa;
    width: 100%;
    border: 1px solid var(--light);
    border-bottom: 1px solid var(--dark);
    border-radius: 7px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 5px;
}

.honey {
    display: none;
}

input:focus {
    outline: none;
    border: 1px solid var(--green-color);
    border-radius: 5px;
}

textarea {
    padding: 10px;
    width: 100%;
    height: 70%;
    border: 1px solid var(--dark);
    border-radius: 7px;
    background-color: #fafafa;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 20px;
}

textarea::placeholder {
    font-size: 15px;
    color: var(--main);
}

textarea:focus {
    outline: none;
    border: 1px solid var(--green-color);
}

input[type="submit"] {
    margin: 30px auto;
    border: 1px solid var(--dark);
    width: 100px;
    border-radius: 5px;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: var(--dark);
    background-color: var(--light);
}

input[type="submit"]:active {
    border: 1px solid var(--light);
}

input[type="submit"]:focus {
    outline: none;
}
