/* ====================================
   CSS für Registrierungsseite
   Datei: register.css
   ==================================== */

.register-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
}

.form-group { 
    margin-bottom: 15px; 
}

.btn-register {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
}

.btn-register:hover {
    background: #218838;
    cursor: pointer;
}

.message { 
    margin: 10px 0; 
    padding: 12px 15px; 
    border-radius: 5px; 
    font-size: 14px;
}

.message.error { 
    background: #fff3f3; 
    color: #dc3545; 
    border: 1px solid #ffc9c9;
}

.message.success { 
    background: #f0fff0; 
    color: #28a745; 
    border: 1px solid #c3e6cb;
}

.message.warning {
    background: #fffbe7;
    color: #856404;
    border: 1px solid #ffeeba;
}

.message.info {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #17a2b8;
    border-left: 3px solid #17a2b8;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 13px;
}

.gender-icons {
    display: flex;
    gap: 10px;
}

.gender-icon {
    width: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gender-icon:hover {
    transform: scale(1.1);
}

.gender-icon.selected {
    border: 2px solid #28a745;
    border-radius: 50%;
}

.btn-chat {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    display: block;
    text-decoration: none;
}

.btn-chat:hover {
    background: #0056b3;
    text-decoration: none;
    color: white;
}

.register-links {
    margin-top: 20px;
    text-align: center;
}

.register-links a {
    color: #007bff;
    text-decoration: none;
}

.register-links a:hover {
    text-decoration: underline;
}

/* Inline-style Ersatz Klassen */
.btn-login {
    background: #007bff !important;
    margin-top: 10px;
}

.btn-back-to-chat {
    margin-top: 10px;
}
