/* Base layout */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #333;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
}

/* Main container */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main container */
.login-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Logo */
.logo {
    display: block;
    width: 80%;
    margin: auto;
}

/* Title */
.login-title {
    color: #343a40;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin: 4rem auto 2rem auto;
}

/* Buttons shared */
.btn {
    display: block;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Register Now Button */
.btn-guest-new {
    background-color: #f5a726;
    color: #fff;
    margin-bottom: 1.5rem;
}

.btn-guest-new:hover {
    background-color: #cc8a20;
    color: #fff;
}

/* Google Button */
.btn-google {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.btn-google:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}

/* Separator */
.separator-line {
    position: relative;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin: 1.5rem 0;
}

.separator-line::before,
.separator-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ddd;
}

.separator-line::before {
    left: 0;
}

.separator-line::after {
    right: 0;
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    background: transparent;
    font-size: 0.8rem;
    position: relative;
    bottom: auto;
    /* margin-top: 2rem; */
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer a {
    text-decoration: none;
    color: #000;
}

.footer-left a {
    margin: 0 0.5rem;
}

.footer a:hover {
    color: #f5a726;
}
