/* Background + base layout */
body.guest-shell {
    margin: 0;
    font-family: "proxima-nova", sans-serif;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/images/hex-bg.svg") repeat;
    background-size: cover;
    padding: 24px 18px 96px;
    box-sizing: border-box;
}

.guest-shell .guest-main {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow-x: visible !important;
}

.guest-shell .floating-logo {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
}

.guest-shell .floating-logo img {
    width: clamp(120px, 22vw, 160px);
}

/* Login container */
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 540px);
}

.login-box {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0, 23, 56, 0.12);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

/* Logo */
.logo {
    width: min(100%, 350px);
    margin-bottom: 1rem;
}

/* Heading */

.title-box {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}
.title {
    font-size: clamp(42px, 8vw, 64px);
    font-weight: 300;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 0;
}

/* Form elements */
.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    font-weight: 300;
    background: transparent;
    outline: none;
    box-sizing: border-box;
}

input::placeholder {
    color: #999;
    font-weight: 300;
    opacity: 1;
}

input:focus {
    border-color: #007bff;
}

/* Checkbox */
.checkbox {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 300;
    margin-bottom: 2rem;
}

.checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Login button */
.login-btn {
    background-color: #2563a5;
    color: white;
    padding: 12px 18px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 14px;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.2s;
    width: 100%;
}

.login-btn:hover {
    background-color: #1c4f85;
}

@media (max-width: 768px) {
    body.guest-shell {
        padding: 18px 14px 72px;
        align-items: flex-start;
    }

    .guest-shell .guest-main {
        min-height: calc(100dvh - 90px) !important;
        justify-content: center !important;
    }

    .login-box {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }

    .title-box {
        margin-bottom: 1.5rem;
    }
}
