body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

header .logo {
    background-image: url('https://shop.qrs.life/cdn/shop/files/horizontal.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 30px;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    color: #1a1a1a;
    font-size: 24px;
}

form {
    display: flex;
    flex-direction: column;
    min-width: 600px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 16px;
}

.form-group input {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#bizaddress {
    font-size: 14px;
    color: #777;
    margin-left: 10px;
}

#addressContainer {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.clear-button {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #e0e0e0;
    color: #000;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.clear-button span {
    margin-right: 5px;
    font-size: 16px;
}

.clear-button:hover {
    background-color: #ccc;
}

button {
    padding: 10px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #333;
}

.back-button {
    padding: 10px;
    background-color: #e0e0e0;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.back-button:hover {
    background-color: #ccc;
}

footer {
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

.custom-url-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.custom-url-container span:first-child {
    margin-right: 10px;
}

.custom-url-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-url-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    flex: 1;
}

.shortname-status {
    position: absolute;
    right: 10px;
    font-size: 20px;
    pointer-events: none;
}

.custom-url-button {
    padding: 10px;
    background-color: #e0e0e0;
    color: #000;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
}

.custom-url-button:hover {
    background-color: #ccc;
}

