/* modal stuff */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
}
.modal .close-modal-button {
    position: absolute;
    top: 0;
    right: 15px;
    color: #aaa;
    font-size: 28px;
}
.modal .close-modal-button:hover,
.modal .close-modal-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.modal h2 {
    font-size: 1.5em;
    margin-bottom: 0;
}
.modal h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #4726d8;
}


/* company-create stuff */

#company-create-form {
    margin: 10px 0;
}
#company-create-form label {
    display: block;
    margin-bottom: 5px;
}
#company-create-form input,
#company-create-form textarea {
    width: 100%;
    margin-bottom: 10px;
    max-width: 400px;
}
#company-create-form button {
    width: 100%;
}

#company-create-button-back {
    display: block;
    margin: 10px auto;
}
