body {
    font-family: 'Urbanist', sans-serif;
    background:#1b140f;
    font-size:14px;
    margin: 0;
    min-height: 100vh;
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: transparent;
}

h1{
    color:#20426b;
}

a {
    color: #f79144;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #5c8ac8;
    text-decoration: none;
}

/* LEFT SIDE POSTER */
.poster-side {
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.poster-side img {
    height: 100vh;
    width: auto;
    display: block;
}

/* RIGHT SIDE */
.content-side {
    flex: 1;
    min-width: 0;
    min-height: 100vh;
    background: #302f3d;
    padding: 40px;
    box-sizing: border-box;
    overflow-y: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

/* LOGIN PANEL */
.login-panel {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* MOBILE MODE */
.container.mobile-layout .poster-side {
    display: none;
}

.container.mobile-layout .content-side {
    width: 100%;
    padding: 20px;
}

.container.mobile-layout .login-panel {
    width: 100%;
    padding: 20px;
}

label {
    display:block;
    margin-top:10px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width:95%;
    padding:10px;
    font-family: 'Urbanist', Arial, sans-serif;
    font-size:14px;
}

button {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    padding: 10px 18px;
    border: none;
    background: #f79144;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover{
    background: #5c8ac8;
    color:#fff;
}

.loginBtn:hover {
    background: #20426b;
}

.loginBtn {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    padding: 10px 18px;
    border: none;
    background: #5c8ac8;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
}

.links {
    margin-top:20px;
    text-align:center;
}

.links a {
    display:block;
    margin-top:8px;
    text-decoration:none;
}

.links a:hover {
    text-decoration: underline;
}

.error {
    color:red;
    margin-top:15px;
}

.success {
    color:green;
    margin-top:15px;
}

/* update_password.php uses this as "message" */
.message {
    color:red;
    margin-top:15px;
}

.actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.actions button { margin-top: 0; }

/* inline help styling (used in update_password.php) */
.pw-hint {
    display:block;
    margin-top:4px;
    color:#777;
}
.pw-hint.good { color: green; }
.pw-hint.bad  { color: red; }


