/* Pulseloom Login Page Enhancements */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: #10151c;
}

.login-bg {
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: linear-gradient(120deg, #1a2232 0%, #233954 80%, #10151c 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 #162a3a99, 0 1.5px 6px 0 #4b7ec733;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 350px;
    margin: 0;
}

.login-fh-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1.3rem;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 12px 0 #162a3a33;
    background: none;
}

.login-title {
    text-align: center;
    margin-bottom: 1.2rem;
}

.pulseloom-bevel {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    background: linear-gradient(90deg, #61ffe7 0%, #2e8fff 60%, #1a2232 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 0 3px 12px #0ff8, 0 1.5px 0 #fff, 0 2px 8px #162a3a99, 0 2px 0 #2e8fff;
    filter: drop-shadow(0 2px 6px #2e8fff88);
    padding-bottom: 0.2rem;
    display: inline-block;
}

.login-subtitle {
    font-size: 1.2rem;
    color: #cbeafe;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
    display: inline-block;
    text-shadow: 0 1.5px 6px #162a3a55;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.login-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    border: 1.5px solid #284a6e;
    background: #1e293b;
    color: #f8fafc;
    font-size: 1.07rem;
    font-weight: 500;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
.login-input:focus {
    border: 1.5px solid #3b82f6;
    box-shadow: 0 0 0 2px #3b82f655;
}

.login-btn {
    background: linear-gradient(180deg, #233954 0%, #284a6e 100%);
    color: #b6cbf5;
    border: 1.5px solid #284a6e;
    border-radius: 8px;
    padding: 0.75rem 1.3rem;
    font-size: 1.07rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 0.7rem;
    box-shadow: 0 2px 8px 0 #162a3a33, 0 1.5px 0 #4b7ec7 inset;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.login-btn:hover, .login-btn:focus {
    background: linear-gradient(180deg, #3b82f6 0%, #284a6e 100%);
    color: #fff;
}

.message-box {
    margin-bottom: 1rem;
    color: #ef4444;
    background: #1e293b;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    display: none;
    font-size: 1rem;
    text-align: center;
}

.splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
}

.splash-screen img.splash-fh-logo {
    height: 320px;
    margin-top: 0;
    margin-bottom: 2.2rem;
    border-radius: 24px;
    box-shadow: 0 12px 48px 0 #162a3a33;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.splash-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.splash-title .pulseloom-bevel {
    font-size: 3.2rem;
    line-height: 1.1;
}
.tm-mark {
    font-size: 1.1rem;
    vertical-align: super;
    margin-left: 0.18em;
    color: #cbeafe;
    opacity: 0.75;
    font-family: inherit;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.95rem;
    text-align: center;
    flex-direction: column ! important;
    color: #dde5f6;  /* match your theme */
    opacity: 0.85;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* space between icon and text */
    font-weight:bold;
}

.disclaimer-icon {
    font-size: 1rem;
    color: #4da6ff; /* highlight icon */
}