/* Colors */

:root{
    --orange: #ff5e14;
    --light-orange: #ff8248;
    --black: #161616;
    --white: #f3f3f3;
    --grey: #e5e5e5;
    --dark-grey: #8c8c8c;
    --green: #15922a;
}

html, body {
    overflow-x: hidden;
}

p {
    margin: 0;
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
}

#body-white {
    background-color: var(--white);
}

#content-zone {
    height: auto;
    margin-top: 10vh;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content-header {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20vh;
}

#content-header a{
    color: var(--orange);
}

#content-header-title {
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    color: var(--black);
}

#content-header-subtitle {
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
    color: var(--dark-grey);
}

#content-body {
    min-height: 70vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}


#button-a {
    background-color: var(--orange);
    font-family: "Teko",sans-serif;
    border: none;
    color: white;
    padding: 5px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: auto;
    align-self: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50px;
}

#button-b {
    background-color: #f0f0f0;
    font-family: "Teko",sans-serif;
    border: none;
    color: #111;
    padding: 8px 25px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50px;
}

#input-a{
    margin-top: 40px;
    width: 100%;
    font-size: 0.8rem;
    border: 1px solid #f3f3f3;
    outline: none;
    background-color: var(--grey);
    color: #111;
    border-radius: 50px;
    padding: 15px;
}