/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
}

.container {
    display: flex;
    width: 80%;
    height: 80%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

/* Image Section (Left Side) */
.image-section {
    flex: 1;
    background-color: orange;
    background-image: url('https://via.placeholder.com/500x800'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
}

/* Form Section (Right Side) */
.form-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    text-align: center;
}

.form-section h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.form-section input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-section input:focus {
    border-color: orange;
    outline: none;
}

.form-section button {
    width: 100%;
    padding: 12px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section button:hover {
    background-color: #ff8c00;
}

.links {
    margin-top: 15px;
}

.links a {
    margin: 0 10px;
    text-decoration: none;
    color: orange;
    font-size: 14px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ff8c00;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: orange;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar .user-info {
    text-align: center;
}

.sidebar h3 {
    margin: 0;
    font-size: 18px;
}

#logout-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#logout-btn:hover {
    background-color: #e67e22;
}

.main-content {
    flex: 1;
    padding: 30px;
    background-color: #f4f4f9;
    overflow-y: auto;
}

.main-content h1 {
    font-size: 24px;
    color: #333;
}

.main-content p {
    font-size: 16px;
    color: #666;
}