
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            display: flex;
            height: 100vh;
            overflow: hidden;
        }

        .auth-container {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .image-side {
            flex: 1;
            background: url('bg.jpg') no-repeat center center;
            background-size: cover; 
            height: 100%;
        }

        .form-side {
            flex: 0 0 400px;
            background-color: #fff;
            padding: 30px;
            box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .auth-box {
            width: 100%;
            max-width: 350px;
            text-align: center;
        }

        .auth-box h1 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #333;
        }

        .auth-box h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #555;
        }

        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }

        .form-group label {
            font-size: 12px;
            color: #555;
            display: block;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            background-color: #f8f8f8;
            transition: border 0.3s ease;
        }

        .form-group input:focus {
            border: 1px solid #007bff;
            outline: none;
        }

        .btn-primary {
            display: inline-block;
            width: 100%;
            padding: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .switch-link {
            margin-top: 15px;
            font-size: 12px;
            color: #555;
        }

        .switch-link a {
            color: #007bff;
            text-decoration: none;
        }

        .switch-link a:hover {
            text-decoration: underline;
        }

        .hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .auth-container {
                flex-direction: column;
            }

            .image-side {
                height: 250px;
                flex: 0 0 250px;
                display: none;
            }

            .form-side {
                width: 100%;
                height: auto;
                box-shadow: none; 
            }
        }

        @media (max-width: 480px) {
            .auth-box h1 {
                font-size: 1.5rem;
            }

            .auth-box h2 {
                font-size: 1.2rem;
            }

            .btn-primary {
                font-size: 12px;
            }
        }
        h2{
            margin-bottom: 10px;
            color:black;
            font-size: 15px;
            font-family: Montserrat;
        }
/* Remember Me Bölümü */
.remember-me {
    display: flex;
    align-items: center;
    gap: 5px; /* Checkbox ve yazı arasında boşluk */
    margin-bottom: 15px; /* Diğer form alanlarından ayrılma */
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.remember-me label {
    font-size: 12px;
    color: #555;
    cursor: pointer; /* Checkbox'a tıklanabilirlik sağlar */
    user-select: none; /* Seçim yapılamaz */
}
