/* Genel stil ve animasyonlu gradient arka plan */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #e50914, #1a1a1a);
    background-size: 400% 400%;
    animation: gradientAnimation 25s ease infinite;
    position: relative;
    overflow-x: hidden;
}

/* Gradient animasyon */
@keyframes gradientAnimation {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Animasyonlu Eflom logosu arka plan JPG */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: url('icon.jpg') no-repeat center center; /* JPG logo */
    background-size: contain;
    opacity: 0.08; /* hafif görünür */
    transform: translate(-50%, -50%);
    animation: logoMove 30s linear infinite alternate;
    z-index: 0;
}

@keyframes logoMove {
    0%   { transform: translate(-50%, -50%) rotate(0deg) scale(1);}
    25%  { transform: translate(-48%, -52%) rotate(10deg) scale(1.05);}
    50%  { transform: translate(-50%, -48%) rotate(-10deg) scale(1.02);}
    75%  { transform: translate(-52%, -50%) rotate(5deg) scale(1.03);}
    100% { transform: translate(-50%, -50%) rotate(0deg) scale(1);}
}

/* Form container */
.revizyon-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.revizyon-form {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    z-index: 2;
}

.revizyon-form h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.revizyon-form p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.revizyon-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.revizyon-form input[type="text"],
.revizyon-form input[type="email"],
.revizyon-form select,
.revizyon-form textarea,
.revizyon-form input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.revizyon-form textarea {
    resize: vertical;
}

.revizyon-form button {
    background-color: #e50914;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    width: 100%;
}

.revizyon-form button:hover {
    background-color: #b00610;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
