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

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.home-card {
    background: #ffffff;
    width: 100%;
    max-width: 700px;
    border-radius: 18px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.home-card h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 35px;
}

.form-card .subtitle{
    text-align: center;
}

.actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: #0b57d0;
    color: white;
}

.btn-primary:hover {
    background: #0847ad;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.title-area{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:10px;
}

.logo{
    height:200px;
}

.form-card {
    text-align: left;
    max-width: 780px;
}

.form-card .title-area {
    justify-content: flex-start;
}

.checkin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #374151;
}

.form-group input,
.form-group select {
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0b57d0;
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.12);
}

.button-row {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}

.button-row.center {
    justify-content: center;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .home-card {
        padding: 30px 22px;
    }

    .home-card h1 {
        font-size: 32px;
    }

    .logo {
        height: 120px;
    }

    .button-row {
        flex-direction: column;
    }

    .button-row .btn,
    .actions .btn {
        width: 100%;
        text-align: center;
    }
}

.guest-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.guest-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    text-decoration: none;
    color: #111827;
    transition: 0.2s ease;
}

.guest-link:hover {
    border-color: #0b57d0;
    box-shadow: 0 4px 12px rgba(11, 87, 208, 0.10);
}

.guest-link strong {
    font-size: 16px;
}

.guest-link span {
    color: #6b7280;
    font-size: 14px;
}

.account-summary {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.summary-card {
    min-width: 180px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-card span {
    font-size: 13px;
    color: #6b7280;
}

.summary-card strong {
    font-size: 20px;
    color: #111827;
}

.folio-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.folio-table th,
.folio-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.folio-table th {
    background: #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.folio-table td {
    font-size: 14px;
    color: #111827;
}
