﻿/* Temel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #4568dc, #b06ab3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-5px);
    }

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

    .login-header h2 {
        color: #333;
        font-size: 28px;
        margin-bottom: 8px;
    }

    .login-header p {
        color: #666;
        font-size: 16px;
    }

.input-group {
    margin-bottom: 24px;
    position: relative;
}

    .input-group label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-weight: 500;
        font-size: 15px;
    }

    .input-group input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s;
    }

        .input-group input:focus {
            outline: none;
            border-color: #4568dc;
            box-shadow: 0 0 0 3px rgba(69, 104, 220, 0.2);
        }

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .remember-me label {
        display: flex;
        align-items: center;
        color: #555;
        font-size: 14px;
        cursor: pointer;
    }

    .remember-me input {
        margin-right: 8px;
    }

.forgot-password {
    color: #4568dc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

    .forgot-password:hover {
        color: #b06ab3;
        text-decoration: underline;
    }

.login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #4568dc, #b06ab3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .login-button:hover {
        background: linear-gradient(to right, #3a57c5, #9b5da0);
        box-shadow: 0 5px 15px rgba(69, 104, 220, 0.3);
    }

.register-link {
    text-align: center;
    margin-top: 24px;
}

    .register-link p {
        color: #666;
        font-size: 14px;
    }

    .register-link a {
        color: #4568dc;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

        .register-link a:hover {
            color: #b06ab3;
            text-decoration: underline;
        }

/* Responsive Tasarım */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-header h2 {
        font-size: 24px;
    }

    .input-group input {
        padding: 12px 14px;
    }

    .login-button {
        padding: 12px;
    }
}
