body {
    background-color: #f8f9fa;
}

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 65px 0;

}

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

.register-form .icon {
    font-size: 4rem;
    color: #B700FF;
}

.register-form h2 {
    font-size: 1.8rem;
    color: #B700FF;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.register-form p {
    color: #6c757d;
    margin-bottom: 8px;
    margin-top: 8px;
}

.form-group {
    text-align: left;
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #495057;
    font-weight: bold;
}

.form-group label .required {
    color: #dc3545;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #ced4da;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    border-color: #B700FF;
    box-shadow: 0 0 0 0.2rem rgba(183, 0, 255, 0.25);
}

.btn-primary {
    background: #B700FF;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #A000E6;
}

.email-verify-group {
    display: flex;
    align-items: center;
}

.email-verify-group .form-control {
    flex-grow: 1;
    margin-right: 10px;
}

.btn-send-code {
    background-color: #B700FF;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-send-code:hover:not(:disabled) {
    background-color: #A000E6;
    transform: translateY(-1px);
}

.btn-send-code:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.terms-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.terms-group input {
    margin-right: 10px;
}

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