/* Styling to match the provided reference image */
.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 40px;
}
.register-card {
    background-color: #f6f6f6;
    width: 100%;
    max-width: 420px;
    padding: 65px 30px 30px 30px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.register-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.custom-icon-bg {
    background-color: #8c2626; /* Dark red to match the image */
    color: #fff;
    border: none;
    border-radius: 0;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-input {
    border-radius: 0;
    border: 1px solid #dcdcdc;
    height: 45px;
    color: #666;
}
.custom-input:focus {
    box-shadow: none;
    border-color: #8c2626;
}
.custom-input::placeholder {
    color: #888;
}
.btn-register {
    background-color: #8c2626;
    color: #fff;
    width: 100%;
    border-radius: 4px;
    font-weight: 500;
    padding: 12px;
    border: none;
    margin-top: 5px;
    font-size: 16px;
}
.btn-register:hover {
    background-color: #731e1e;
    color: #fff;
}
.captcha-row {
    display: flex;
    margin-bottom: 1rem;
    border: 1px solid #dcdcdc;
}
.captcha-container {
    cursor: pointer;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    height: 45px;
    overflow: hidden;
}
.captcha-container img {
    height: 100%;
}
.captcha-input {
    border: none;
    border-left: 1px solid #dcdcdc;
}