.login-container {
    padding: 3rem 0;
}

.login-form {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border: 1px solid #c0c0c0;
}

.login-form h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: normal;
}

.form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.6rem;
    border: 1px solid #808080;
    font-size: 1rem;
}

.login-form button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #808080;
    background: #e6e6e6;
    color: black;
    font-size: 1rem;
    cursor: pointer;
}

.login-form p {
    margin-top: 1.5rem;
}

.login-form a {
    color: #005ea5;
}

.login-logo {
    position: absolute;
    right: 1.3rem;
    bottom: 3rem;
    width: 80px;
    height: auto;
    pointer-events: none;
}

.notice {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #808080;
    background: #f4f4f4;
    line-height: 1.5;
}

.notice h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.notice p {
    margin: 0;
}

.form-error {
    margin: 0 0 1.5rem 0;
    padding: 0.6rem 0.8rem;
    border: 1px solid #b00020;
    background: #fdecea;
    color: #b00020;
    font-weight: bold;
}


.help-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    margin-left: 0.4rem;
    flex-shrink: 0;
    background: #b3b3b3;
    border-radius: 50%;
    color: #fff;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 1;
    cursor: pointer;
}


.help-tip.active::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: 150%;
    transform: translateX(-50%);
    width: 220px;
    padding: 0.5rem 0.6rem;
    background: #333;
    color: white;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.4;
    border-radius: 4px;
    z-index: 10;
}


.notice-error {
    border-color: #b00020;
    background: #fdecea;
    color: #b00020;
}

.form-actions {
    margin-top: 2rem;
}

.login-form hr {
    border: 0;
    border-top: 1px solid #c0c0c0;
    margin: 2rem 0;
}