* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background: #FEF3E8;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    background: #fff;
    overflow: hidden;
}

/* Left Section */
.left-section {
    width: 50%;
    height: 100%;
    background: #B07154;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.left-section img {
    width: 250px;
    height: auto;
    margin-bottom: 3rem;
}

.info-text {
    color: white;
    font-size: 16px;
    line-height: 24px;
    max-width: 300px;
}

/* Right Section */
.right-section {
    width: 50%;
    height: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.title {
    color: #B07154;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 1.2rem;
    text-align: center;
}

.subtitle {
    color: #B07154;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.8;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.input-field {
    width: 100%;
    height: 45px;
    border: 1px solid #B07154;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    color: #4A4A4A;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.input-field::placeholder {
    color: #B07154;
    opacity: 0.7;
    font-size: 14px;
    font-weight: 400;
}

.input-field:focus {
    border-color: #B07154;
}

.submit-btn {
    width: 100%;
    height: 45px;
    background: #B07154;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: #95604A;
}

.submit-btn-text {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.back-to-login {
    color: #B07154;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.back-to-login:hover {
    opacity: 1;
}

.error-message {
    color: #FF4B4B;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 13px;
}

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

    .left-section,
    .right-section {
        width: 100%;
        height: 50%;
        padding: 2rem;
    }

    .left-section img {
        width: 180px;
        margin-bottom: 2rem;
    }

    .info-text {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .left-section,
    .right-section {
        padding: 1.5rem;
    }

    .title {
        font-size: 24px;
        line-height: 32px;
    }

    .left-section img {
        width: 150px;
        margin-bottom: 1.5rem;
    }
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
    border: 2px solid #B07154;
}

.popup-content {
    color: #B07154;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}