/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    height: 100vh;
    background: #0b3a63;
}

/* Layout */
.container {
    position: relative;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Split panels */
.panel {
    flex: 1;
}

.left {
    background: #0a3a63;
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    color: #d4af37;
    text-align: center;
    top: 20%;
}

/* Typography */
.monogram {
    font-size: 80px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #d4af37;
}

.title {
    font-size: 28px;
    font-style: italic;
    margin-bottom: 40px;
}

/* Form */
.form input {
    padding: 12px 16px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #fff;
    outline: none;
    margin-bottom: 15px;
    width: 250px;
}

.form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form button {
    padding: 12px 20px;
    background: #d4af37;
    color: #0a2a44;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.form button:hover {
    background: #f1d97a;
}

/* Ribbon */
.ribbon {
    position: absolute;
    width: 140%;
    height: 40px;
    background: #8b0000;
    top: 55%;
    left: -20%;
    transform: rotate(-10deg);
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.message {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.submessage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Button styled like the form button */
.back-button {
    display: inline-block;
    padding: 12px 20px;
    background: #d4af37;
    color: #0a2a44;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-button:hover {
    background: #f1d97a;
}


