body {
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.hero-section {
    position: relative;
    height: 82px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .content {
    position: relative;
    z-index: 2;
}

.navbar-nav .nav-link {
    margin-right: 15px;
}
.singup-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.singup-box {
    width: 100%;
    max-width: 535px;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
}

.singup-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D8AA37;
    margin-bottom: 30px;
}

.form-control {
    height: 45px;
    border-radius: 6px;
}

.btn-singup {
    background-color: #D8AA37;
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
}

.btn-singup:hover {
    background-color: #D8AA37;
    color: white;
}

.forgot-password {
    text-align: right;
    font-size: 0.9rem;
    margin-top: 5px;
}

.login-link {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
}

.login-link a {
    color: #D8AA37;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}