/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 19. 3. 2022, 13:57:13
    Author     : hanzlikj
*/
.horizontal-header{
    background-color: #d8e1f2;
    ;
    color:black;
    border-right:1px solid black;
}

.login-form {
    width: 340px;
    margin: 50px auto;
    font-size: 15px;
}
.login-form form {
    margin-bottom: 15px;
    background: #f7f7f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px;
}
.login-form h2 {
    margin: 0 0 15px;
}
.form-control, .btn {
    min-height: 38px;
    border-radius: 2px;
}
.btn {
    font-size: 15px;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.modal-content {
    padding: 0;
    margin: 10% auto;
    width: fit-content;
    border-radius: 8px;
    position: relative;
    text-align: left;
    min-width: 300px;
    overflow: hidden;
}
.modal-header {
    font-size: 18px;
    font-weight: bold;
    background: #343a40;
    color: white;
    padding: 10px;
    margin: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close {
    cursor: pointer;
    font-size: 20px;
    color: white;
}
.modal-body {
    padding: 20px;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.form-group label {
    margin-right: 10px;
    min-width: 110px;
    text-align: right;
}
.form-group input, .form-group textarea {
    flex: 1;
}




