/* style.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdf7f0;
    color: #333;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.left-panel {
    width: 35%;
    background: linear-gradient(to bottom, #fdf7f0, #e6dac6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-decoration {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: #f2a949;
    border-radius: 50%;
    z-index: 0;
}

.login-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    width: 85%;
    text-align: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #3e3e3e;
    margin-bottom: 20px;
}

h2 {
    margin: 10px 0;
    font-size: 22px;
    color: #333;
}

.description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #5fc18d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.login-form button:hover {
    background-color: #4db37d;
}

.signup {
    margin-top: 15px;
    font-size: 13px;
}

.signup a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.error {
    background: #ffd3d3;
    color: #b90000;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.right-panel {
    width: 65%;
    position: relative;
    background: url('images/site/backgroundhotel.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
}

.header-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.preview-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.preview-images img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #888;
    padding: 20px 10px;
}
