﻿
body.diamond-register-page {
    margin: 0;
    padding: 50px;
    font-family: 'Poppins', sans-serif;
    background: url('/assets/img/Register/RegsiterBG2.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.diamond-register-page {
    content: "";
    position: relative;
    inset: 0;
    backdrop-filter: blur(40px);
    background: rgba(255, 248, 235, 0.7);
}

.page-center-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-card-wrapper {
    width: 1100px;
    max-width: 95%;
    display: flex;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.register-left {
    width: 60%;
    background: url('/assets/img/Register/RegsiterBG.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 60px 40px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.register-left::before {
    content: "";
    position: absolute;
    inset: 0;
}

.left-content {
    position: relative;
    z-index: 2;
}

.left-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.left-content span {
    color: #d4af37;
    font-style: italic;
}

.left-content p {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.register-right {
    width: 58%;
    padding: 60px 55px;
    background: #ffffff;
}

.register-header {
    text-align: center;
    margin-bottom: 35px;
}

.register-header img {
    width: 200px;
    margin-bottom: 10px;
}

.register-header h3 {
    margin: 5px 0;
    font-weight: 600;
    font-size: 22px;
}

.register-header p {
    font-size: 14px;
    color: #777;
}

.register-header a {
    color: #d4af37;
    font-weight: 500;
    text-decoration: none;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 5px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
    text-align: center;
}

.form-subtitle a {
    color: #c49a3a;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.form-subtitle a:hover {
    text-decoration: underline;
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    padding: 14px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #c49a3a;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(196, 154, 58, 0.15);
}

.form-floating > label {
    font-size: 13px;
    color: #888;
}

.row {
    margin-bottom: 5px;
}

.mb-3 {
    margin-bottom: 18px !important;
}

.text-danger {
    font-size: 12px;
    margin-top: 4px;
}

.form-check {
    margin-top: 10px;
}

.form-check-input {
    border-radius: 4px;
    border: 1px solid #c49a3a;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #c49a3a;
    border-color: #c49a3a;
}

.form-check-label {
    font-size: 13px;
    color: #666;
}

.btn-register {
    background: linear-gradient(135deg, #c6a54a, #e6c46d);
    border: none;
    padding: 14px;
    border-radius: 0px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    margin-top: 30px;
    width: 100%;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212,175,55,0.6);
    color: white;
}

.btn-register:active {
    transform: scale(0.98);
}

.g-recaptcha {
    margin-top: 15px;
    margin-bottom: 10px;
}


@media (max-width: 992px) {

    .register-card-wrapper {
        flex-direction: column;
        width: 95%;
    }

    .register-left {
        width: 100%;
        height: 250px;
        padding: 30px;
    }

    .register-right {
        width: 100%;
        padding: 40px 25px;
    }

    .left-content h2 {
        font-size: 26px;
    }
}

.custom-select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid #d6a84a;
    border-radius: 12px;
    background-size: 14px;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
}

.custom-select:focus {
    outline: none;
    border-color: #c08a2e;
    box-shadow: 0 0 0 2px rgba(214,168,74,0.2);
}

@media (max-width: 1200px) {
    .register-right {
        padding: 50px 45px;
    }

    .register-left {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {

    body.diamond-register-page {
        padding: 30px 15px;
    }

    .register-card-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .register-left {
        min-height: 450px;
        padding: 40px 30px;
        align-items: center;
        text-align: center;
    }

    .left-content {
        max-width: 100%;
    }

    .left-content h2 {
        font-size: 26px;
    }

    .register-right {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {

    body.diamond-register-page {
        padding: 20px 10px;
    }

    .register-card-wrapper {
        border-radius: 16px;
    }

    .register-left {
        min-height: 300px;
        padding: 25px 20px;
    }

    .left-content h2 {
        font-size: 22px;
    }

    .register-right {
        padding: 30px 20px;
    }

    .btn-register {
        padding: 13px;
        font-size: 14px;
    }

    .rc-anchor-normal .rc-anchor-pt {
        padding-right: 36px !important;
    }
}

@media (max-width: 380px) {

    .left-content h2 {
        font-size: 20px;
    }

    .register-right {
        padding: 25px 15px;
    }

    .rc-anchor-normal .rc-anchor-pt {
        padding-right: 36px !important;
    }
}

.recaptcha-wrapper {
    width: 100%;
    overflow: hidden;
}

.g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.90);
    }
}

@media (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.82);
    }
}

@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}