/* HERO */
#jewel-hero-section {
    height: 320px;
    background: 
        linear-gradient(rgba(10,15,20,0.85), rgba(10,15,20,0.85)),
        url("../images/signup/bg-image.png") center/cover no-repeat;
}

/* Title */
.jewel-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
}

.jewel-hero-subtitle {
    font-size: 14px;
    color: #cfcfcf;
}

/* SIGNUP BACKGROUND */
#jewel-signup-section {
    background: url("../images/signup/bg-image.png") center/cover no-repeat;
}

/* Card */
.jewel-form-wrapper {
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Form Title */
.jewel-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

/* Inputs */
.form-control {
    height: 42px;
    border: 1px solid #e5c7c7;
}

.form-control:focus {
    border-color: #c98f8f;
    box-shadow: 0 0 0 2px rgba(201, 143, 143, 0.2);
}

/* Button */
.jewel-submit-btn {
    background: #c98f8f;
    color: #fff;
}

.jewel-submit-btn:hover {
    background: #b77a7a;
}

/* Diamond */
.jewel-diamond-icon {
    width: 32%;
    transition: 0.3s ease;
    cursor: pointer;
}

.jewel-diamond-icon:hover {
    transform: scale(1.1);
}

/* Login Link */
.jewel-login-link {
    color: #c98f8f;
    font-weight: 500;
}