.container {
    width: calc(100% - 20px);
    max-width: 500px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;

    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;

    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.input-wrap {
    display: flex;
    align-items: center;
    background: #2a2a2a;
    padding: 6px 10px;
    border-radius: 4px;
}

.input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    outline: none;
}

.register-title {
    font-size: 2em;
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    color: white;
    background: #C10050;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.error {
    background: #400;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.requirements {
    font-size: 12px;
    color: #aaa;
}

.requirements #info {
    margin-bottom: 6px;
}

.requirements .item {
    padding-left: 14px;
    margin: 3px 0;
}

.status-wrap {
    width: calc(100% - 20px);
    max-width: 500px;
    padding: 10px;
}

.status-card {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-title {
    font-size: 2em;
    color: white;
}

.status-text {
    font-size: 13px;
    color: #bbb;
    line-height: 1.4;
}

.status-success {
    border-left: 4px solid #00c853;
}

.status-error {
    border-left: 4px solid #ff3d00;
}

.status-info {
    /* border-left: 4px solid #2979ff; */
    text-decoration: none;
}

.status-button {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 12px;
    background: #C10050;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}