.register-container {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--hs-main-primary-color);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rating p {
    margin: 0 10px 0 0;
}

.stars {
    display: flex;
    align-items: center;
}

.stars span {
    color: var(--hs-main-primary-color);
    margin-right: 5px;
    font-size: 18px;
}

form {
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

small {
    display: block;
    margin-bottom: 10px;
    color: #777;
}

.terms {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.terms input[type="checkbox"] {
    margin-right: 10px;
}

.terms label {
    margin: 0;
}

.terms a {
    color: #000;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--hs-main-primary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(112, 0, 66);
}