@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.content {
    flex: 1;
}

.navbar {
    padding: 18.4px 24px;
}

.navbar-brand {
    color: #1363DF;
    font-weight: 600;
    font-size: 24px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #1363DF !important;
    text-decoration: none !important;
    cursor: default;
}

/* login */
.login-container {
    max-width: 900px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
.login-left {
    background-color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.login-left img {
    max-width: 75%;
}

/* register */
.register-container {
    max-width: 1000px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
.register-left {
    background-color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.register-left img {
    max-width: 75%;
}

.about-section {
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-section h1 {
    font-weight: 700;
    color: #2c3e50;
}

.about-section p,
.about-section li {
    font-size: 1rem;
    color: #555;
}

.highlight-title {
    background-color: #f1f1f1;
    padding: 1rem;
    border-left: 4px solid #0d6efd;
    margin: 1.5rem 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    color: #333;
}

.profile-info p strong {
    color: #0d6efd;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #0d6efd !important;
  }
  
  .navbar-nav .nav-link:hover {
    color: #0d6efd !important;
  }
  
  .navbar-nav .nav-link {
    transition: all 0.2s ease-in-out;
    padding-bottom: 4px;
  }