
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #fff;
    height: 100vh;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Panel Styles */
.left-panel {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&q=80&w=1000') center/cover;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 60px;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 40, 150, 0.4), rgba(0, 50, 180, 0.9));
}

.content-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.logo .icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}
.logo img {
    width: 32px;
    height: auto;
    max-width: none;
}

.quote-container h1 {
    font-size: 2.5rem;
    max-width: 500px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 80px;
    display: block;
    margin-bottom: -20px;
    opacity: 0.6;
}

.author {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Right Panel Styles */
.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.form-container {
    width: 100%;
    max-width: 450px;
}

h2 {
    font-size: 32px;
    color: #0d1b3e;
    margin-bottom: 8px;
}

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

/* Portal Tabs */
.portal-options {
    display: flex;
    gap: 15px;
    margin: 15px 0 30px 0;
}

.portal-btn {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.portal-btn.active {
    border: 2px solid #0052cc;
    color: #0052cc;
}

.portal-btn.secondary {
    background: #0052cc;
    color: white;
    border: none;
}

/* Inputs */
.input-group {
    margin-bottom: 20px;
}

.label, label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fcfcfc;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #999;
}

.eye-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #999;
}

/* Actions */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 25px;
}

.forgot-pass {
    color: #0052cc;
    text-decoration: none;
    font-weight: bold;
}

.signin-btn {
    width: 100%;
    padding: 16px;
    background: #0052cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.signup-text {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

.signup-text a {
    color: #0052cc;
    font-weight: bold;
    text-decoration: none;
}

.footer-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .left-panel { display: none; }
}
.error {
    border-color: #e74c3c !important;
    background-color: #fceae9 !important;
}
img {
    max-width: 30%;
}