/* ===========================================================
   Skript: /DOMERA/CSS/forgot_password.css - DOMERA
   Zweck: Seitenspezifisches Styling für forgot_password.php
   =========================================================== */

body {
    font-family: 'Arial', sans-serif;
    background-color: #0b1a20;
    color: #ecf0f1;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.wrapper {
    background-color: #1b2a38;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    border: 1px solid #0b1a20;
}

/* ==========================================
   Header mit Logo + Titel
   ========================================== */

.form-header {
    position: relative;
    margin-bottom: 25px;
    height: 42px;
}

.form-header img {
    position: absolute;
    top: -8px;
    left: -6px;
    width: 55px;
    height: 55px;
}

.form-header h2 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-variant: small-caps;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ecf0f1;
    line-height: 40px;
}

/* ==========================================
   Formular
   ========================================== */
   
.form-group {
    margin-bottom: 1em;
}

label {
    display: block;
    margin-bottom: .5em;
}

input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-sizing: border-box;
    color: #000;
    transition: all 0.2s ease-in-out;
}

/* Konsistent zu login.php */
input.is-invalid {
    border: 2px solid #e74c3c !important;
    background-color: #fff0f0 !important;
    box-shadow: 0 0 4px rgba(231, 76, 60, 0.4);
}

.btn {
    background-color: #2980b9;
    color: #ecf0f1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.btn:hover {
    background-color: #3c6e71;
}

.form-footer {
    margin-top: 10px;
    text-align: center;
}

.form-footer a {
    color: #ecf0f1;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}