@import url(./global.css);
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

a,
a:link,
a:hover,
a:active,
a:visited {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: inherit
}

body {
    background: #000;
}

.page {
    margin: 0 auto;
    width: 350px;
    margin-top: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#logo {
    position: relative;
    margin: 30px 0;
    height: 170px;
}

.form-status {
    border-radius: 4px;
    background: var(--colorDefault);
    font-family: Open Sans;
    font-weight: 400;
    font-size: 13px;
    color: #FFF;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.input {
    border-radius: 50px;
    border: none;
    background: #DDE3EC;
    font-family: Open Sans;
    font-weight: 400;
    font-size: 15px;
    color: #1b2028;
    outline: none;
    padding: 15px 30px;
    margin-bottom: 15px;
    width: 100%;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.input::-webkit-input-placeholder {
    color: #1b2028
}

.input:focus {
    background: #FFF;
    color: #1b2028;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease
}

#submit {
    margin-top: 30px;
    border-radius: 50px;
    background: #343333;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -1px;
    color: #FFF;
    padding: 10px 15px;
    cursor: pointer;
    outline: none;
    width: 100%;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease;
    border: 2px solid #FFF;
}

#submit:hover {
    background: var(--colorDefault);
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease
}

.copyright {
    font-family: Open Sans;
    font-weight: 300;
    font-size: 12px;
    color: #FFF;
    margin-top: 10px;
    width: 100%;
    text-align: right
}