body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}
  
.form-container {
    max-width: 490px;
    width: 100%;
    border-radius: 15px;
    border: none;
}
  
/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1f51ff;
    margin-bottom: 10px;
}
  
.text-muted {
    font-size: 14px;
}
  
.custom-input {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
  
.input-group-text {
    background-color: #f1f1f1;
    border-right: none;
}
  
.form-control {
    border-left: none;
    padding: 10px;
}
  
.password-strength {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.strength-bar {
    width: 33%;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out;
}

.weak {
    background-color: red !important;
}

.medium {
    background-color: orange !important;
}

.strong {
    background-color: green !important;
}