body {
    background: #fff;
    font-family: 'Lato', sans-serif;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 400px;
    max-width: 40%;
    padding: 1rem 2rem;
    border: solid 1px #dcdcdc;
    border-radius: 10px;
    overflow: auto;
}

.content--info {
    border: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.header__content {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    height: 75px;
    width: auto;
}

.form {
    display: flex;
    flex-direction: column;
    width: 85%;
}

.form__title {
    padding: 0.875rem 0 0.3rem;
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.77);
}

.form__form-field {
    width: 100%;
    padding: 0.875rem 0;
    margin-bottom: 0.5rem;
}

.form__form-field--code {
    margin-bottom: 1rem;
}

.form__form-field--dropZone {
    margin: 0;
    padding: 0;
}

.label {
    display: block;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 0.75em;
    color: rgba(0, 0, 0, 0.54);
}

input {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 1px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input--text {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.77);
}

.error-placeholder {
    height: 1px;
}

.error-msg {
    color: red;
    font-size: 0.7em;
    display: none;
}

#dropZone {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 150px;
    padding: 1rem 1rem 0.1rem;
    overflow: hidden;
    border: dashed 2px rgba(0, 0, 0, 0.54);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
}

#dropZone.in {
    border-color: #266074;
}

#dropZone.hover {
    background: #efefef;
}

#dropZone.fade {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 1;
}

#dropZone .dropZone__text {
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.77);
}

.dropZone__text p {
    margin-bottom: 0;
}

.dropZone__text:first-child {
    margin-bottom: 0.5rem;
}

.dropZone__text span {
    font-weight: 600;
}

.upload-btn {
    background: #266074;
    color: #fff;
    font-size: 0.875em;
}

.upload-btn:hover {
    background-color: #266074;
    color: #fff;
}

.file-info {
    font-weight: 600;
    margin: 0;
}

.title {
    color: rgba(0, 0, 0, 0.77);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.54);
}

.form__submit-button {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    color: #fff;
    background: #266074;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 85%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.form__submit-button--disabled {
    background: rgba(0, 0, 0, 0.24);
    color: rgba(0, 0, 0, 0.54);
    cursor: not-allowed;
}

.upload-info {
    width: 100%;
    text-align: center;
}

.upload-info__message {
    font-size: 1em;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-info__message--success {
    color: #266074;
}

.upload-info__message--error {
    color: red;
}

.upload-info__message--info {
    color: #266074;
    animation-iteration-count: infinite;
}

.footer__label--shown {
    display: block;
}
