html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: "Georgia", serif;
    overflow: hidden;
}

#container {
    position: relative;
    width: 1083px;
    height: 676px;
}

.outer-body {
    position: absolute;
    top: 0;
    right: 0;
    width: 994px;
    height: 596px;
    background-color: #1c2f4a;
}

.inner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 32px;
    background-color: #FFEDED; 
    display: flex;
    justify-content: space-between;
    width: 731px;
    height: 442px;
    border: 32px solid #CCCCCC;
    box-sizing: content-box;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Island Moments', cursive;
    text-align: center;
    width: 300px;
}

.left header .image {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
}

.left h1 {
    font-size: 72px;
    margin: 0 0 20px 0;
}

.left p {
    font-size: 48px;
    margin: 0;
}

.right {
    display: flex;
    flex-direction: column;
    width: 400px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.columns {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Inria Serif', serif;
    font-size: 14px;
}

.input {
    width: 80px;
    font-size: 12px;
}

input[type="text"]:focus {
    border: 1px solid #D6D9DC;
    outline: dashed gray;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.submit-btn {
    width: 100px;
    margin-top: -10px; 
    font-family: 'Inria Serif', serif;
    font-size: 14px;
}

.support {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    top: 620px; 
    height: 2px; 
    background-color: #ccc;
    z-index: 9999; 
}

.base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1083px;
    height: 54px;
    background-color: #b8860b;
}

.left-column {
    position: absolute;
    top: 0;
    left: 0;
    width: 63px;
    height: 622px;
    background-color: #3b5748;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-column .white-bar {
    width: 5px;
    height: 622px;
    background-color: #fff;
}

.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 731px;
    height: 27px;
    background-color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
    box-sizing: border-box;
}

.bottom-bar .block {
    width: 18px;
    height: 18px;
    background-color: #000;
}

.moon {
    position: absolute;
    top: 35px;
    right: 40px;
    width: 66px;
    height: 66px;
    background-color: gold;
}


