/*
 * style.css
 * Zentrales Styling für das Login-System
 */

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #007bff 0%, #3e98ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
    box-sizing: border-box;
}

#login-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

#login-container:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    margin-bottom: 25px;
    height: 70px;
    width: 70px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

h1 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}


input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 1px #007bff;
    outline: none;
    background-color: #f7faff;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.1s;
    margin-top: 25px;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

button[type="submit"]:active {
    transform: translateY(0);
}

.error-message {
    color: #dc3545;
    margin-top: 15px;
    font-weight: 500;
    display: block;
}

.footer-links {
    margin-top: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}