* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff8f0 0%, #fffaf0 100%);
    padding: 40px 20px;
}

.login-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.13);
    overflow: hidden;
}

.login-left {
    padding: 70px 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.48)), url('img/login.jpg') center/cover no-repeat;
    position: relative;
}

.login-left h1 {
    font-size: 2.85rem;
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 700;
}

.login-left p {
    font-size: 1.18rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.login-right {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    text-align: center;
    font-size: 2.15rem;
    color: #222;
    margin-bottom: 40px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    color: #444;
    font-size: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #f57c00;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.15);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 15px;
}

.remember-forgot label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.remember-forgot input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f57c00;
}

.logins-btn {
    width: 100%;
    height: 56px;
    background: #f57c00;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.12rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background: #e36b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.35);
}

.social-login {
    margin: 38px 0 28px;
    text-align: center;
}

.social-login p {
    color: #666;
    margin-bottom: 18px;
    font-size: 15px;
}

.social-btn {
    width: 100%;
    height: 52px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #f57c00;
    color: #f57c00;
    transform: translateY(-1px);
}

.signup-link {
    text-align: center;
    margin-top: 30px;
    font-size: 15.2px;
    color: #555;
}

.signup-link a {
    color: #f57c00;
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}
