* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --bg-main: #FAF3E8;       
    --bg-card: #FFFDFA;       
    --text-dark: #333333;     
    --text-light: #666666;    
    --accent-orange: #F4974A; 
    --accent-hover: #e0853a;  
    --input-bg: #EAE6DF;     
    --card-border: #E8DCCB;   
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-dark);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.page-container {
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 250px;
}

.logo-section {
  position: fixed;     
  top: 24px;
  left: 32px;           
  z-index: 100;
}

.logo {
  height: 70px;
  margin-left: 30px;
}

.content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.left-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 120%;
    max-height: 80vh;
    object-fit: contain;
}

.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-card {
    background-color: var(--bg-card);
    padding: 30px 35px; 
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    border: 2px solid var(--card-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}


header {
    text-align: center;
    margin-bottom: 25px;
}

h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.subtitle {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.3px;
}


.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    background-color: var(--input-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
    transition: 0.2s;
}

.input-group input:focus {
    background-color: #fff;
    border-color: var(--accent-orange);
}

.input-group input::placeholder {
    color: #999;
}


.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
}


.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 500;
}

.checkbox-container input {
    accent-color: var(--accent-orange);
}

.forgot-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}


.btn-primary {
  display: block;
  text-align: center;
  background: #f79b4a;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 5%;
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-google {
    background-color: transparent;
    border: 1px solid #ccc; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-google:hover {
    background-color: #fff8f0;
}

.google-icon {
    width: 18px;
    height: 18px;
}


footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
}

footer a {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
}


@media (max-width: 900px) {
    body {
        overflow-y: auto;
        height: auto;
        padding: 40px 0;
    }
    
    .content-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .logo-section {
        position: relative;
        text-align: center;
        margin-bottom: 20px;
        top: 0; left: 0;
    }

    .left-panel {
        margin-top: 20px;
    }
}