@font-face {
    font-family: IranSans;
    src: url('./../fonts/IRANSans.ttf');
    src: url('./../fonts/IRANSans.woff');
}
* {
    box-sizing: border-box;
    font-family: IranSans;
}
html{
    height:100%;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    height:100%;
}
a{
    text-decoration: none !important;
}
#login-form {
    max-width: 350px;
    margin: 200px auto;
    border: 1px solid #d6d6d6;
    padding: 20px;
    box-shadow: 0px 0px 5px #d1d1d1;
}

.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.icon {
    padding: 10px;
    background: dodgerblue;
    color: white;
    min-width: 50px;
    text-align: center;
}

.input-field {
    width: 100%;
    padding: 10px;
    outline: none;
}

.input-field:focus {
    border: 2px solid dodgerblue;
}

/* Set a style for the submit button */
.btn {
    background-color: dodgerblue;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn:hover {
    opacity: 1;
}
textarea.form-control {
    height: 100px !important;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}