.personal-link-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #ffffff0d;
    border: 1px solid #ffffff18;
    border-radius: 8px;
    padding: 14px 16px;
    max-width: 420px;
}

.personal-link-notice svg {
    color: #ff5e00;
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

.personal-link-notice p {
    font-size: 0.82rem;
    color: #ffffff70;
    line-height: 1.6;
}

.personal-link-notice p strong {
    color: #ffffffcc;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.features-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff5e00;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid #e4e4e8;
    border-radius: 8px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #fff4ee;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    color: #ff5e00;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #17171c;
}

.feature-desc {
    font-size: 0.78rem;
    color: #61616b;
    line-height: 1.5;
}

.schedule-graphic {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #e4e4e8;
    border-radius: 10px;
    padding: 16px;
}

.graphic-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #61616b;
    margin-bottom: 4px;
}

.graphic-header {
    display: grid;
    grid-template-columns: 80px repeat(6, 1fr);
    gap: 3px;
}

.graphic-header-cell {
    font-size: 0.68rem;
    color: #999;
    text-align: center;
    padding: 4px 0;
}

.graphic-row {
    display: grid;
    grid-template-columns: 80px repeat(6, 1fr);
    gap: 3px;
    height: 28px;
    align-items: center;
}

.graphic-row-label {
    font-size: 0.72rem;
    color: #61616b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.graphic-cell {
    height: 100%;
    border-radius: 4px;
    background-color: #f0f0f4;
}

.graphic-cell.filled-green {
    background-color: rgba(0, 200, 100, 0.3);
    box-shadow: inset 0 0 0 1px rgba(0, 200, 100, 0.6);
}

.graphic-cell.filled-red {
    background-color: rgba(255, 94, 0, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 94, 0, 0.5);
}

.graphic-cell.span2 {
    grid-column: span 2;
}

.graphic-cell.span3 {
    grid-column: span 3;
}

.login-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 380px;
}

.login-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #17171c;
    letter-spacing: -0.04em;
}

.login-subtitle {
    font-size: 0.88rem;
    color: #61616b;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #17171c;
    letter-spacing: 0.01em;
}

.form-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid #e4e4e8;
    border-radius: 8px;
    padding: 11px 14px;
    transition: border-color 0.2s;
}

.form-input-wrapper:focus-within {
    border-color: #ff5e00;
}

.form-input-wrapper svg {
    width: 16px;
    height: 16px;
    color: #999;
    flex-shrink: 0;
}

.form-input-wrapper input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 0.9rem;
    color: #17171c;
    font-family: inherit;
}

.form-input-wrapper input::placeholder {
    color: #bbb;
}

.error-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff4f0;
    border: 1px solid #ffcdb8;
    border-radius: 8px;
    padding: 10px 14px;
}

.error-notice svg {
    width: 15px;
    height: 15px;
    color: #ff5e00;
    flex-shrink: 0;
}

.error-notice p {
    font-size: 0.82rem;
    color: #c0340a;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    background-color: #ff5e00;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #17171c;
}

.back-link svg {
    width: 14px;
    height: 14px;
}