/* Genel Sayfa Tasarımı */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slide 15s infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(-300%); }
}

/* Login Form Container */
.login-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.login-form-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    color: #d1242a;
}

/* Input Fields */
.form-control {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Button Styles */
.btn {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-danger {
    background-color: #d1242a;
    border: none;
    color: white;
}

.btn-danger:hover {
    background-color: #b21c24;
}

.btn-light {
    background-color: #f1f1f1;
    border: none;
}

.btn-light:hover {
    background-color: #e1e1e1;
}

/* Icon and Text Styles */
.fas {
    margin-right: 10px;
}

/* Forgot Password Link */
.text-center a {
    color: #d1242a;
    text-decoration: none;
    font-size: 14px;
}

.text-center a:hover {
    text-decoration: underline;
}
