*{
    margin:0; padding:0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section{
    padding: 2rem 9%;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover{
    background: #FED389;
    color: #333;
}

header{
    position: inherit;
    top: 0; left: 0; right: 0;
    transform: translate3d(0, 0, 0);
    background: url(../image/header2.png);
    background-size: cover;
    background-position: center;
    padding: 20px 24%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

header .logo{
    font-size: 3rem;
    color: #333;
    font-weight: bolder;
}

header .navbar a{
    font-size: 13px;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover{
    color: var(--pink)
}


.home{
    display: flex;
    align-items: center;
    min-height: 93vh;
    background: url(../image/landingpage_background.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 50rem;
}

.home .content h3{
    font-size: 3rem;
    color: #333;
}

.home .content span{
    font-size: 3.5rem;
    color: var(--pink);
    padding: 1rem 0;
    line-height: 1.5;
}

.home .content p{
    font-size: 1.5rem;
    color: #999;
    padding: 1rem 0;
    line-height: 1.5;
}





/* Custom Login Modal Styles */
.modal .custom-login-modal-content {
    background-color: #FAF8ED;
    border-radius: 10px;
    border: 1px solid #D6C4B0;
    padding: 20px;
}

.custom-login-modal-header {
    background-color: #FAF8ED;
    border-bottom: none;
    text-align: center;
}

.modal .custom-login-modal-header .modal-title {
    font-size: 1.8rem;
    font-weight: 10px;
    color: #8F504D;
    margin: 0 auto;
    padding-left: 90px;
}

.modal .custom-login-input {
    border-radius: 5px;
    border: 1px solid #D6C4B0;
    background-color: #FFF;
    color: #5D949E;
    padding: 10px;
}

.modal .custom-login-btn {
    background-color: #5D949E;
    color: #FAF8ED;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.modal .custom-login-btn:hover {
    background-color: #D6C4B0;
    color: #5D949E;
}


.modal-content{
    margin-left: 75px;
    /* height: 300px; */
}

.form-control{
    font-size: 1.5rem;
}

#togglePassword {
    cursor: pointer;
}




/* Ensure proper spacing between columns */
.row .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.custom-login-modal-content {
    max-width: 700px; /* Adjust the width as needed */
    margin: auto;
}

.modal-body {
    padding: 20px;
}

.position-relative .btn-outline-secondary {
    border: none;
    background: none;
}



