#form-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 60px auto 60px;
    width: 320px;
    height: auto;
    border-radius: 12px;
    border: 1px solid #d0d0d0;
    background: rgb(255, 255, 255);
    box-shadow: 0 0 10px rgb(240, 240, 240);
}

#form-container input {
    text-decoration: none;
    position: relative;
    width: 80%;
    display: block;
    margin: 20px auto;
    font-size: 15px;
    color: #000;
    padding: 8px;
    border-radius: 6px;
    border: none;
    background: rgba(208, 208, 208, 0.35);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#form-container input:focus {
    outline: none;
    box-shadow: 2px 2px 10px rgb(200, 200, 200);
    background: rgba(208, 208, 208, 0.5);
}

#form-container select {
    text-decoration: none;
    position: relative;
    width: 85%;
    display: block;
    margin: 20px auto;
    font-size: 14px;
    color: #2c2c2c;
    padding: 8px;
    border-radius: 6px;
    border: none;
    background: rgba(208, 208, 208, 0.35);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#form-container select:focus {
    outline: none;
    box-shadow: 2px 2px 10px rgb(200, 200, 200);
    background: rgba(208, 208, 208, 0.5);
}

#form-container .label {
    font-size: 11px;
    width: 100%;
    vertical-align: middle;
    display: table;
    margin-bottom: 20px;
}

#form-container #agreement, #form-container #create-desk {
    margin: 0 10px 0 8% !important;
    vertical-align: bottom;
    width: auto;
    display: inline-block;
}

#form-title {
    font-weight: normal;
    text-align: center;
    position: relative;
    font-size: 24px;
}

#form-button {
    text-decoration: none;
    position: relative;
    display: block;
    margin: 20px auto;
    font-size: 16px;
    padding: 8px;
    border-radius: 6px;
    border: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center;
    cursor: pointer;
    background-image: linear-gradient(to right, #f6c200, #04b709);
    color: rgb(250, 250, 250);
    width: 85%;
    -webkit-appearance: none;
    outline: none;
}

#form-button:hover {
    outline: none;
    box-shadow: 2px 2px 10px rgb(200, 200, 200);
    background-image: linear-gradient(to right, #e5b502, #04a409);
}

#form-button:focus {
    outline: none;
}

.form-errors {
    padding-left: 25px;
    padding-right: 25px;
    color: #cf0000;
    list-style-type: none;
    font-size: 14px;
    text-align: center;
}

#form-success {
    padding-left: 25px;
    padding-right: 25px;
    color: #04b709;
    list-style-type: none;
    font-size: 14px;
    text-align: center;
}

::-webkit-input-placeholder {
    color: #737373;
}

:-moz-placeholder {
    color: #101010;
}

::-moz-placeholder {
    color: #101010;
}

:-ms-input-placeholder {
    color: #101010;
}

input::-ms-clear {
    display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(158, 181, 0, 0.1) inset !important;
    -webkit-text-fill-color: #101010 !important;
}

::-ms-browse {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    border: none;
    text-align: center;
    cursor: pointer;
    background: #bdbdbd;
    color: rgb(250, 250, 250);
    -webkit-appearance: none;
    outline: none;
}

::-webkit-file-upload-button {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    border: none;
    text-align: center;
    cursor: pointer;
    background: #bdbdbd;
    color: rgb(250, 250, 250);
    -webkit-appearance: none;
    outline: none;
}

.image-file::-webkit-file-upload-button {
    background: #ffffff;
    visibility: hidden;
}

.image-file::before {
    content: 'Zvolit soubor';
    margin-right: -86px;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    border: none;
    text-align: center;
    cursor: pointer;
    background: #bdbdbd;
    color: rgb(250, 250, 250);
    -webkit-appearance: none;
    outline: none;
}

#forgotten-box {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 5px 5px 5px;
}

#forgotten-text {
    font-size: 13px;
    right: 0;
    top: 8px;
    cursor: pointer;
}

#forgotten-text:hover {
    text-decoration: underline;
}

select {
    font-size: 14px;
    color: #2c2c2c;
    padding: 8px;
    border-radius: 6px;
    border: none;
    background: rgba(208, 208, 208, 0.35);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

select:focus {
    outline: none;
    box-shadow: 2px 2px 10px rgb(240, 240, 240);
    background: rgba(208, 208, 208, 0.5);
}

input[type="file" i]:focus {
    outline: none;
}

.label {
    font-size: 14px;
    color: #3b3b3b;
    white-space: nowrap;;
}

.input-normal {
    width: 200px !important;
}

.input-max {
    width: 625px !important;
}

@media (max-width: 800px) {

    .input-normal {
        width: 95% !important;
    }

    .input-max {
        width: 95% !important;
    }

}