/* E42Art Login Eklentisi Stil Dosyası */

/* Genel Form Konteyneri */
.e42-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    box-sizing: border-box;
}

.e42-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #000000;
    font-weight: 600;
}

/* Form Grupları */
.e42-form-group {
    margin-bottom: 20px;
}

.e42-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

/* Input Alanları */
.e42-form-group input[type="text"],
.e42-form-group input[type="email"],
.e42-form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.e42-form-group input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Buton */
.e42-button {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(45deg, #666666, #000000);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.e42-button:hover {
    background: linear-gradient(45deg, #666666, #000000);
    transform: translateY(-2px);
}

/* Mesaj Kutuları (Hata/Başarı) */
.e42-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
}

.e42-message.error {
    background-color: #fbeae5;
    color: #c0392b;
    border-color: #e74c3c;
}

.e42-message.success {
    background-color: #e8f6f3;
    color: #16a085;
    border-color: #1abc9c;
}

/* Form Alt Bilgisi */
.e42-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.e42-form-footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.e42-form-footer a:hover {
    text-decoration: underline;
}


/* Mobil Uyum (Responsive) */
@media (max-width: 480px) {
    .e42-container {
        margin: 20px 15px;
        padding: 20px;
    }
}
