/* Allgemeine Einstellungen */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(13deg, #0c4615, #ca0707);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
}


.form-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.description {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 8px rgba(106, 17, 203, 0.3);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #6a11cb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5a09c4;
}

.error-message {
    color: red;
    font-size: 14px;
}


.dashboard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
}


.dashboard-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
}

.dashboard-box h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

#roleMessage {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

#logoutButton {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#logoutButton:hover {
    background-color: #d32f2f;
}
.note-item textarea {
    width: 100%;
    padding: 0px;
    font-size: 14px;
    border: none;
    background-color: #aba6a6;
    resize: none; 
    outline: true;
    outline-color: #ff0000;
    height: 125px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
