/*#region RESET*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*#endregion*/

html, body {
    width: 100vw;
    height: 100vh;
    font-size: 65%;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    overflow: hidden;
}

h1, h2, h3, h4, h5 {
    outline: none;
    border: none;
}

.page {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.create-btn {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    padding: 0 10px;
    height: 30px;
    width: 100px;
    border-radius: 4px;
    color: #ffffff;
    background-color: #3CBA41;
    text-decoration: none;
    font-size: 10px;
    outline: none;
    border: none;
    cursor: pointer;
}

.create-btn-text {
    display: block;
    padding-left: 10px;
}

.form-box {
    box-sizing: border-box;
    padding: 15px;
    border-radius: 3px;
    background-color: #fff;
    max-width: 500px;
    width: 100%;
}

.form-btn {
    height: 40px;
    width: 100%;
    background-color: #ff6a00;
    color: #fff;
    outline: none;
    border-radius: 60px;
    border: none;
    width: 150px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
} 

.form-btn.delete {
    background-color: #ff0000;
}

.form-field {
    padding-bottom: 7px;

}

.form-label {
    color: #3F4661;
    font-size: 10px;
}

.form-field.noval {
    padding-bottom: 25px;
}

.form-input {
    height: 30px;
    width:100%;
    box-sizing: border-box;
    padding: 0 10px;
    margin-top: 5px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #888;
}

    .form-input.invalid {
        border-color: #be2f2f;
    }

.validation {
    height: 15px;
    overflow: hidden;
    font-size: 10px;
    color: #fff;
    border-radius: 2px;
    margin-top: 3px;
}

.validation-message {
    background-color: #be2f2f;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.form-title {
    font-size: 18px; 
    font-weight: 800;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #e9e9e9;
    border-radius: 3px;
}

@media (min-width: 1295px) {

    .form-box {
        min-width: 1015px;
    }

    .form-box > form {
        display: grid;
        max-width: 1015px;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }

}