:root {
    --color1: #B53C2D;
    --color2: #CC6456;
    --color3: #D98A7A;
    --color4: #3C3C3C;
    --color5: #C04B3C;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background-color: #D6D6D6;
  color: #3C3C3C;
}

nav {
    background-color: var(--color1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 120px;
  padding: 2rem;
}

.main-content h1 {
    font-size: 2.5rem;
    color: var(--color5);
}

.main-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.main-image {
    max-width: 400px;
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
    background-color: var(--color1);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

footer a {
    color: white;
    text-decoration: underline;
}

footer a:hover {
    color: var(--color3);
}

.login-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.form-box {
    background-color: var(--color3);
    border: 2px solid var(--color2);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.form-box:hover {
    background-color: var(--color3);
    opacity: 90%;
}

.form-box h1 {
    margin-bottom: 1rem;
    color: var(--color5);
}

.form-box input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-box button {
    padding: 0.6rem 1.2rem;
    background-color: var(--color5);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-box button:hover {
    background-color: var(--color2);
}

.border-blur {
  position: relative;
  display: inline-block;
}

.border-blur::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(255, 255, 255, 0.5) 100%);
  filter: blur(10px);
  z-index: 2;
}

.border-blur img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}
