/* Base Styles */

body{
box-sizing: border-box;
margin: 0;
padding: 0;
}

/* Naasa Logo Img */
div.kc-logo-text {
height: 12px;
width: 100px;
}

.header-logo {
height: auto;
max-width: 300px;
width: 100%;
}

.main-header-logo{
    height: auto;
    width: 350px;
}

.login-pf body {
background: url("../img/keycloak-bg.svg") no-repeat center center fixed;
background-size: cover;
height: 100%;
min-height: 100vh;
}

/* main body */
#main-body{
    width:100%;
    height:100%;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
}

/* Main Layout */
.login-pf-page {
display: flex;
padding: 20px;
justify-content: space-evenly;
align-items: center;
width: 100%;
height: 100%;
flex-wrap: wrap;
}

/* Naasa Introduction Section */
.naasa-intro {
max-width: 600px;
width: 100%;
padding: 20px;
display: flex;
flex-direction: column;
}

.logo-container {
margin-bottom: 20px;
width: 100%;
margin-left: -15px;
}

.naasa-title {
font-size: 24px;
font-weight: bold;
font-family: Arial, sans-serif;
background: linear-gradient(90deg, #0781B2, #1AAF8F);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 15px;
}

.naasa-description, .naasa-features {
font-size: 16px;
margin-bottom: 12px;
width: 100%;
line-height: 1.4;
}

.naasa-tagline {
font-size: 16px;
font-weight: bold;
margin-bottom: 20px;
width: 100%;
}

.naasa-signup {
font-size: 14px;
margin-bottom: 20px;
width: 100%;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}

.start-button {
border: 1px solid rgb(228, 185, 57);
padding: 4px 12px;
border-radius: 6px;
cursor: pointer;
background-color: transparent;
font-size: 14px;
transition: all 0.3s ease;
}

.start-button:hover {
background-color: rgb(228, 185, 57, 0.1);
}

.app-links {
display: flex;
gap: 15px;
margin-top: 20px;
width: 100%;
flex-wrap: wrap;
}

.app-badge {
height: 40px;
width: auto;
}


/* Form Card Styles */
.card-pf {
/* box-shadow: var(--pf-global--BoxShadow--lg); */
max-width: 500px;
width: 100%;
border-radius: 16px;
border: 1px solid #C5DBE4;
}


/* Input field for login */
#username {
border: none; 
border-bottom: 2px solid green;
outline: none;
padding: 8px 0; 
}

#username:focus {
border-bottom: 2px solid darkgreen;
}

#username::placeholder {
font-size: 12px; 
color: gray; 
}
#login-password {
border: none; 
border-bottom: 2px solid green;
outline: none; 
padding: 8px 0; 
}

#login-password:focus {
border-bottom: 2px solid darkgreen; 
}

#login-password::placeholder {
font-size: 12px; 
color: gray; 
}

#viewPasswordBtn:hover {
border: none; 
border-bottom: 2px solid green; 

}

/* Form Options Row */
.form-options-row {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin: 15px 0;
}

.forgot-password {
color: #007bff;
text-decoration: none;
}

.forgot-password:hover {
text-decoration: underline;
}

/* Register Button */
#kc-registration-container {
display: flex;
justify-content: center;
margin-top: 1rem;
width: 100%;
}


/* KYC Login Styles */
.kyc-login-div {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
margin-top: 20px;
}

.kyc-login-button {
padding: 8px 10px;
font-size: 10px;
font-weight: bold;
color: #fff;
background-color: linear-gradient(90deg, #138C61, #4DBA93);;
border: none;
border-radius: 8px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease;
width: 90px;
text-align: center;
}

.kyc-login-button:hover {
background-color: linear-gradient(90deg, #138C61, #4DBA93);;
color: #fff;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


/* Login Button */
#kc-login {
width: 100%;
padding: 10px;
background-color: #20B78A;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}


#kc-login:hover {
background-color: #189670;
}

/* Page Title */
#kc-page-title {
text-align: center;
margin-bottom: 20px;
font-size: 24px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
.login-pf-page {
justify-content: center;
}
}
@media (max-width: 900px) {
.login-pf-page {
padding: 10px;
}
.card-pf {
max-width: 500px;
}
}
@media (max-width: 768px) {
.naasa-intro {
padding: 10px;
}
.header-logo {
max-width: 200px;
}
.naasa-title {
font-size: 20px;
}
.naasa-description, .naasa-features {
font-size: 14px;
}
.card-pf {
max-width: 100%;
margin: 15px 0;
padding: 15px;
}
}
@media (max-width: 480px) {
.header-logo {
max-width: 150px;
}
.naasa-title {
font-size: 18px;
}
.naasa-description, .naasa-features, .naasa-tagline {
font-size: 13px;
}
.naasa-signup {
font-size: 12px;
}
.app-badge {
height: 35px;
}
#kc-page-title {
font-size: 20px;
}
}

.fa-play {
            margin-left: 5px;
            color: #F9A826; /* Yellow color for the icon */
        }

/* Navbar */
header_nav {
    color: rgba(85, 88, 89, 1);
    display: flex;
    justify-content: center;
    align-content:center;
    font-size: 16px;
}
.header_nav .navbar {
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-around;
    margin: 20px 13rem 0px 15rem;
    border-radius: 60px;
    padding: 20px 10px;
    box-shadow: 0 9px 100px rgba(24, 48, 63, 0.2)
}
.header_nav .navbar .menu-item {
    position: relative;
    /*cursor:pointer;*/
}
.header_nav .navbar .menu-item .nav-items {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}
.header_nav .navbar .menu-item .nav-items i {
    font-size: 14px; 
    vertical-align: middle;
    position: relative;
    top: 2px; 
}
.header_nav .navbar .dropdown {
    position: absolute;
    padding: 20px 25px;
    top: 45px; /* Position the dropdown below the parent */
    left: -20rem;
    background-color: white;
    color: black;
    min-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: none;
    z-index: 1000;
}
.header_nav .navbar .dropdown > h3 {
    font-size: 12px;
    color: rgba(85, 88, 89, 1);
    font-weight: 600;
    margin: 0 0 15px 0;
    padding: 5px 0px;
}

.header_nav .navbar .menu-item .dropdown > .dropdown_items {
    display: grid;
    place-content: space-between;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 16px;
}

.header_nav .navbar .menu-item .dropdown > .dropdown_items > .dropdown_item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    padding: 12px;
    align-items:center;
    /* justify-content: center; */
}
    .header_nav .navbar .menu-item .dropdown > .dropdown_items > .dropdown_item >img {
        height:20px;
        width:20px
    }
        .header_nav .navbar .menu-item .dropdown > .dropdown_items > .dropdown_item > div {
    display: flex;
    flex-direction: column
}
.header_nav .navbar .menu-item .dropdown > div {
    display: grid;
}
.header_nav .navbar .menu-item .dropdown > .dropdown_items > .dropdown_item .heading {
    font-size: 13px;
    font-weight: 600;
    color: rgba(85, 88, 89, );
}
.header_nav .navbar .menu-item .dropdown > .dropdown_items > .dropdown_item .desc {
    font-size: 12px;
    color: rgba(85, 88, 89, 1);
}

.dropdown .addtional-div {
    margin-top: 16px;
    color: rgba(85, 88, 89, 1);
}
.dropdown .addtional-div > h3 {
    font-size: 12px;
    color: rgba(85, 88, 89, 1);
    font-weight: 600;
    margin: 0 0 5px 0;
    padding: 5px 0px;
}
.dropdown .addtional-div div {
    font-size:12px;
}


/* Footer */
.footer-body {
    text-align: center; 
    padding: 20px; 
    font-family: Arial, sans-serif; 
    font-size: 14px; 
    color: #555;
}

.footer-links{
    margin: 0 15px; 
    color: #333; 
    text-decoration: none;
    font-weight: 600;
}

/* Products */
.grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
.app {
      text-align: center;
      text-decoration: none;
      color: #111;
      transition: transform 0.2s;
    }

.app:hover {
    transform: scale(1.05);
}

.app img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.highlight {
    background-color: #eefaf4;
    border-radius: 10px;
    padding: 10px;
}