/* Vars */
.dark { /* dark mode */
    --bg-color: #121212;
    --surface-color: #1e1e1e;
    --light-bg: #1e1e1e;
    --light-bg1: #2a2a2a;
    --light-bg2: #242424;
    --text-color: white;
    --text-muted:  #cbc1c1;
    --primary:     #007bff;
    --primary-hover: #1b6dc5;
    --secondary: #14559b;
    --error:       #cf6679;
    --radius:      6px;
    --gap:         16px;
    --max-width:   1200px;
    --padding:     24px;
    --op-shadow2: rgba(255, 255, 255, 0.2);
    --shadow5: rgba(0,0,0,0.5);
    --shadow6: rgba(0,0,0,0.6);
    --border: #333;
}

:root {
    --bg-color: #ededed;
    --surface-color: white;
    --light-bg: rgb(244, 252, 255);
    --light-bg1: #f5f5f5;
    --light-bg2: #fefefe;
    --text-color: black;
    --text-muted:  #343e3e;
    --primary:     #ff4949;
    --primary-hover: #df3838;
    --secondary: #0d2aab;
    --error:       #cf6679;
    --radius:      6px;
    --gap:         16px;
    --max-width:   1200px;
    --padding:     24px;
    --op-shadow2: rgba(0, 0, 0, 0.2);
    --shadow5: rgba(255,255,255,0.5);
    --shadow6: rgba(255,255,255,0.6);
    --border: #ccc;
}

*, option {
    font-family: 'LXGW WenKai Mono TC';
}

html {
    height: 100%;
}

/* static/css/styles.css */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin-left: 10px;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url("flowerBG.png");
    background-repeat: no-repeat;
    min-height: 100%;
}

.main-container {
    max-width: var(--max-width);
    padding: var(--padding);
}

.foot {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    background-color: var(--light-bg);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    box-shadow: 0 -2px 6px var(--shadow5);
}


h1, h2 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--gap);
}

h1 {
    font-size: 50px;
}

.logo {
    position: fixed;
    top: var(--gap);
    right: var(--gap);
    width: 120px;
    opacity: 0.8;
}

button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 23px;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s, transform 0.2s;
}
  
button:hover {
    background-color: var(--primary-hover);
}
  
button:active {
    transform: scale(0.97);
}

.row,
form,
#request-details {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px var(--shadow6);
    padding: var(--padding);
    margin-bottom: var(--gap);
    width: 85%;
    margin-left: 20px;
}
/* styles.css */










/* auth.css */
.playwrite-ar {
    font-family: "Playwrite AR", cursive;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.row {
    width: 70vw; /* Set this to the desired width */
    height: 60vh; /* Set this to the desired height */
    overflow: hidden; /* Ensures content stays within the div */
}

.row img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Can be 'cover', 'contain', 'fill', etc. */
}

#right-col {
    display: block;
    height: auto;
}

#title {
    margin-left: 20px;
}

