﻿span.error {
    color: red;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    /* above everything */
    display: none;
    /* hidden by default */
}

/* Spinner Style */
.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero__master-links {
    max-width: 480px !important;
}


/*----------------Form---------------------*/

.reg-intrest-form-In {
    padding: 15px;
}

.reg-intrest-form-outer {
    position: relative;
    max-width: 420px;
    margin: 40px auto;
    padding: 15px 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}

.Reg-form-head {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 2px solid #ddb039;
    color: #000;
}

.reg-form-block {
    padding-bottom: 22px;
	position: relative;
}

.reg-form-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.fieldStyle {
    width: 100%;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    font-size: 15px;
    color: #666;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fieldStyle:focus {
    border-color: #ddb039;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.reg-form-block button {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 5px;
    background: #ddb039;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.error-txt {
    color: red;
    font-size: 13px;
	position: absolute;
	bottom: 0;
}

.reg-form-block button::before {
    content: "Submit";
}

.reg-form-block button:hover {
    background: #ba9124;
}

.success-msg,
.error-msg {
    display: none; 
}

.success-msg-txt, .error-msg-txt {
	width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: green;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-msg-txt {
	color: red;
}




