/* auth-styles.css */
.detective-form {
    width: 400px;
    background: #e8dcc4; /* Kolor starego papieru / teczki manila */
    border: 2px solid #3c3c3c;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    padding: 30px;
    font-family: 'Courier New', Courier, monospace;
    color: #2b2b2b;
    position: relative;
}

.detective-form h2 {
    text-transform: uppercase;
    border-bottom: 2px dashed #2b2b2b;
    padding-bottom: 10px;
    text-align: center;
}

.detective-form input[type="text"],
.detective-form input[type="email"],
.detective-form input[type="password"],
.detective-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #2b2b2b;
    font-family: inherit;
    font-size: 16px;
    margin-bottom: 20px;
    outline: none;
}

.detective-form textarea {
    border: 1px solid #2b2b2b;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
}

.btn-stamp {
    background: transparent;
    border: 3px solid #8b0000; /* Czerwona pieczątka */
    color: #8b0000;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    font-family: inherit;
    transform: rotate(-2deg);
    transition: transform 0.1s;
}

.btn-stamp:active { transform: scale(0.95) rotate(-2deg); }
.form-link { color: #0056b3; cursor: pointer; text-decoration: underline; font-size: 14px; }