@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

body {
    /* font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column; */
    background-color: #ffffff;
}

/* body,
h1,
ul {
    margin: 0;
    padding: 0;
} */



.error-company-url-not-found-wrapper {
    margin: 2rem auto;
}
.error-company-url-not-found-image {
    background-image: url(pexels-brett-jordan-7952673.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 21rem;
}
.error-company-url-not-found-content {
    padding: 2rem;
    background-color: rgba(255 72 72 / 30%);
}




h1.tack {
    text-align: center;
}

.tack {
    text-align: center;
}


.login-credentials {
    /* background-color: #e1e1e1; */
    /* border-radius: 5px; */
    /* border: dashed; */
    /* border-color: #5f5f5f; */
    /* border-width: 2px; */

    padding: 40px;
    background-color: #e5e5e5;
    border: 2px dashed #999;
    border-radius: 20px;
    font-size: 20px;
    margin: 40px 0;
}


.warning {
    color: darkred;
    font-size: 32px;
    font-weight:600;

}

.warning-text {
    font-weight: 500;
}

/*HEADER & NAV*/
/* header {
    align-items: center;
    display: flex;
    height: auto;
    background-color: #005ca9;
} */

/* nav {
    flex: 1;
    margin-left: 3%;
} */

/* .logo {
    margin-left: 1%;
} */

/* nav ul {
    padding-left: 70%;
    display: flex;
    justify-content: space-around;
    color: #ffffff;
} */


nav li {
    list-style: none;
}


nav .login-link a {
    color: #ffffff;
}

/*FLEXBOX*/
.row {
    display: flex;
    margin: 0 auto;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
}

.column {
    flex: 50%;
    margin-left: 2%;
    margin-right: 2%;
}

.container {
    width: 70%;
    margin: auto;
    max-width: 1920px;
}




.inner-container-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 20%;
}


/*BUTTON*/
button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    background-color: #005ca9;
}

button:hover {
    background-color: #003662;
}

.client-add-case input[type=submit] {

    background: none;
    text-shadow: none;

    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    background-color: #005ca9;
    width: 200px;


}

.client-add-case input[type=submit]:hover {
    background: #003662;
}

/*FOOTER*/
footer {
    bottom: 0;
    left: 0;
    right: 0;
    background: #005ca9;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-top: 30px;
}

/*FORMULÄR*/
.client-add-case input, .client-add-case textarea {
    width: 100%;
    border: 1px solid black;
    border-radius: 4px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;

    max-width: unset;
}

.form {
    margin-top: 2%;
    text-align: center;
}

/* .message,  */
.messageArende, .messageHandelse, .messageTidpunkt, .messageAtgarder, .messageFilename {
    color: red;
    font-size: 14px;
}

textarea {
    font-family: 'Roboto', sans-serif;
    resize: none;
}

/*FILUPPLADDNING STYLING*/

.client-add-case input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
}

.client-add-case input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #005ca9;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.client-add-case input[type=file]::file-selector-button:hover {
    background: #003662;
}

.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 140px; */
    height: fit-content;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
}

.drop-container:hover {
    background: #eee;
    border-color: #111;
}

.drop-container:hover .drop-title {
    color: #222;
}

.drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
}

footer p {
    margin: auto;
    font-size: 14px;
    color: #ffffff;
}

@media only screen and (max-width: 640px) {

    /*FLEXBOX*/
    .row {
        display: block;
        margin-top: 40px;
    }

    nav ul {
        padding-left: 50%;
        color: #ffffff;
    }

    .logo {
        margin-left: 1%;
        width: 180px;
    }

    footer p {
        text-align: center;
        font-size: 14px;
        color: #ffffff;
    }

}