@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;

    margin: 0;

    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
}

.logo {
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 612px;
    height: 400px;

    padding: 20px;

    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);

    margin: 25px 0 15px 0;
}

.title {
    margin: 5px 0 22px 0;

    font-weight: normal;
    font-size: 20px;
}

.header {
    display: flex;
}

.tool-description {
    flex-grow: 1;

    margin: 0;
}

.example-box {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 30px;

    white-space: nowrap;

    text-decoration: none;
    color: black;
}

.form {
    display: flex;

    flex-grow: 1;
}

.view {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}

.grow-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex-grow: 1;

    width: 100%;
}

#dropzone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 550px;
    height: 120px;

    background-color: #F8F8F8;
    border: 1px dashed #979797;
}

#error {
    text-align: center;
    color: #E62644;
}

.file-preview {
    display: flex;
    align-items: center;

    width: 100%;
    height: 50px;

    background-color: #EDEDED;
}

.file-icon {
    padding: 0 10px;
}

.filename {
    flex-grow: 1;
}

.remove-file {
    cursor: pointer;
    padding-right: 15px;
}

.submit {
    background-color: #B4B4B4;
    color: white;

    width: 130px;
    height: 30px;

    border: none;
    box-shadow: none;
}
.submit.active {
    background-color: #218600;
    cursor: pointer;
}
.submit.download {
    background-color: #005D86;
    cursor: pointer;
}

.developed-by {
    color: #014C6B;
    text-decoration: none;
}
