/* style.css */
body.login-bg {
    margin: 0;
    background: #000;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.login-box h2 {
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 4px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #222;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.login-box .error {
    color: red;
    margin-bottom: 15px;
}
/*index stilovi*/
body {
    background: #f2f2f2;
    font-family: Georgia, serif;
    position: relative;
}

.logout-btn {
    background: #333;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.form-wrapper {
    max-width: 800px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

.form-wrapper h1 {
    text-align: center;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

input[type="file"] {
    margin-top: 10px;
}

button.print-btn {
    margin-top: 30px;
    padding: 12px 25px;
    background: black;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}