.create-account-container {
    max-width: 480px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px 30px 40px;
}

.create-account-container h2 {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.create-box {
    background-color: #f3f3f3;
    padding: 30px;
    border-radius: 3px;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 2px;
    font-size: 14px;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.btn.create {
    background-color: #13693c;
    color: white;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.btn.cancel {
    background-color: #a02727;
    color: white;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.btn.create:hover {
    background-color: #0f5530;
}

.btn.cancel:hover {
    background-color: #812020;
}

.restricted-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.restricted-box {
    background: #f3f3f3;
    border: 1px solid #ccc;
    padding: 40px;
    text-align: center;
    width: 400px;
    border-radius: 5px;
}

.restricted-box i {
    color: #13693c;
    margin-bottom: 15px;
}

.restricted-box h3 {
    margin-bottom: 10px;
    color: #111;
}

.restricted-box p {
    color: #333;
    margin-bottom: 20px;
}

.restricted-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.restricted-buttons .btn.sign {
    background-color: #13693c;
    color: white;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.restricted-buttons .btn.create {
    background-color: #a02727;
    color: white;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.restricted-buttons .btn.sign:hover {
    background-color: #0f5530;
}

.restricted-buttons .btn.create:hover {
    background-color: #812020;
}
