* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-section {
    flex: 1;
    padding: 40px;
    max-width: 480px;
}

.back-arrow {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    margin-bottom: 30px;
    display: block;
}

.login-content {
    padding: 20px 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.forgot-password {
    text-align: right;
    font-size: 14px;
}

.forgot-password a {
    color: #0066cc;
    text-decoration: none;
}

.remember-me {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 8px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #8B7355;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #76614A;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #666;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-button {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-button:hover {
    background-color: #f5f5f5;
}

.social-button img {
    width: 20px;
    height: 20px;
}

.signup-link {
    text-align: center;
    font-size: 14px;
}

.signup-link a {
    color: #0066cc;
    text-decoration: none;
}

.image-section {
    flex: 1;
    background:white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.shoe-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shoe-item {
    width: 100%;
    max-width: 700px;
    height: 703px;
    object-fit: cover;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .login-section {
        max-width: 100%;
    }

    .image-section {
        display: none;
    }
}