.detail-main {
    flex-direction: row;
    justify-content: center;
}

.far-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.login-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
    max-width: 60%;
    border-radius: 1rem;
    height: fit-content;
}

.login-container > h3 {
    margin-top: 0;
    margin-bottom: 4rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    margin-bottom: 3rem;
}

.input-container {
    display: flex;
    flex-direction: column;
}

.login-input {
    outline: none;
    border: none;
    border-bottom: 1px solid #949494;
    max-width: 95%;
}

.login-input:hover {
    border-bottom: 1px solid #212121;
}

.login-input:focus
.login-input:focus-visible {
    border-bottom: 2px solid #212121;
}

.login-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer-logo {
    display: block;
    width: 100%;
    max-width: 30rem;
    height: auto;
}


/* for registration page */
.password-indicator div {
    background-color: #48cd3e;
    height: 100%;
}

.password-indicator {
    background-color: #d2d2d2;
    height: 0.3em;
    width: 100%;
}

.password-strength {
    margin: 15px;
}

.password-strength-text {
    float: right;
    font-weight: bold;
}

.password-strength-title {
    display: inline;
}

.green {
    color: white;
    background-color: green;
}

.yellow {
    color: white;
    background-color:  #d7bc2b;
}

.red {
    color: white;
    background-color: red;
}

.grey {
    background-color: #d2d2d2;
}


div.split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

div.split > div {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: 1rem;
    max-width: 50%;
}

div.split > div:first-child {
    border-right: 1px solid #e0e0e0;
}

div.stacked {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
}

textarea {
    border: solid 1px var(--color-border);
    border-radius: var(--border-radius--base);
    width: 100%;
    padding: 6px 36px 6px 6px;
}

.disabled {
    opacity: 0.3;
    cursor: auto;
}

.progress-label {
    background-color: rgba(136, 135, 135, 0.36);
    padding: 0.5rem;
    border-radius: 10px;
}

.progress-label.in_progress {
    background-color: #e1ab5e;
}

.progress-label.completed {
    background-color: #2b7a2b;
    color: white;
}

.progress-label.failed {
    background-color: #bc5454;
}


.regist-form {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    margin-bottom: 3rem;
}

fieldset {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.parallel-even>fieldset {
    flex-grow: 1;
    justify-content: start;
    padding: 1rem;
    max-width: 50%;
}

.parallel-even>fieldset:first-child {
    border-right: 1px solid var(--row-even-color);
}
