html,
body,
#daybook-root {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(79, 142, 163, .12), transparent 40%),
        #edf1f2;
}

.standalone-auth {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(237, 241, 242, .82);
    backdrop-filter: blur(18px);
}

.standalone-auth-card {
    width: min(390px, 100%);
    padding: 34px;
    border: 1px solid rgba(37, 37, 35, .12);
    border-radius: 24px;
    background: #fffef9;
    box-shadow: 0 28px 90px rgba(20, 30, 35, .15);
    color: #252523;
    font-family: system-ui, sans-serif;
}

.standalone-wordmark {
    font-family: Georgia, serif;
    font-size: 18px;
}

.standalone-auth-card h1 {
    margin: 22px 0 8px;
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
}

.standalone-auth-card p {
    margin: 0 0 25px;
    color: #77756f;
}

.standalone-auth-card label {
    display: block;
    margin: 13px 0 6px;
    color: #77756f;
    font-size: 12px;
}

.standalone-auth-card input {
    width: 100%;
    padding: 11px 12px;
    box-sizing: border-box;
    border: 1px solid rgba(37, 37, 35, .14);
    border-radius: 12px;
    background: rgba(37, 37, 35, .035);
    font: inherit;
}

.standalone-auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 15px;
}

.standalone-auth-card button,
.standalone-logout,
#closeAlert {
    padding: 10px 12px;
    border: 1px solid rgba(37, 37, 35, .14);
    border-radius: 12px;
    background: rgba(37, 37, 35, .06);
    color: inherit;
    cursor: pointer;
}

.standalone-google {
    width: 100%;
    margin-top: 9px;
}

.standalone-logout {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 20;
}

.standalone-alert {
    position: fixed;
    top: 14px;
    left: 50%;
    z-index: 200;
    display: none;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    padding: 9px 11px;
    border: 1px solid rgba(37, 37, 35, .14);
    border-radius: 12px;
    background: #fffef9;
}

.standalone-alert.showAlert {
    display: flex;
}
