.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.logo-container img {
    width: 200px;
    height: 200px;
}

.sidebar {
    display: block;
    width: 300px;
    background-color: #61aeff;
    padding: 20px;
    height: auto;
}

.sidebar .active {
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    background-color: #61aeff;
}

.content {
    display: block;
    width: 100%;
    padding: 20px 20px 0 20px;
}

.gradient-custom-2 {
    /* fallback for old browsers */
    background: #fccb90;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, #fba31e, #ee7724);

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, #fba31e, #ee7724);
}

@media (min-width: 768px) {
    .gradient-form {
        height: 100vh !important;
    }
}

@media (min-width: 769px) {
    .gradient-custom-2 {
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}

.navbar {
    background-image: linear-gradient(to right, #fba31e, #ee7724);
}

.navbar-brand {
    animation: fadeIn 1s;
}

.navbar-nav .nav-link {
    animation: slideIn 1s;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
    }
    to {
        transform: translateX(0);
    }
}

.card-body {
    padding: 1.25rem;
}

.card-body .text-center {
    margin-bottom: 1rem;
}

.card-body form {
    margin-bottom: 0.5rem;
}

.card-body .text-center .btn {
    margin-bottom: 0.5rem;
}

.card-body .text-center a {
    margin-bottom: 0.5rem;
}

.card-body .text-white {
    word-break: break-word;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.card {
    animation: fadeIn 1s;
}

.btn-group .generate-config-btn {
    margin-right: 10px;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; /* Increased size */
    height: 350px; /* Increased size */
    background: radial-gradient(circle, #fba31e, #ee7724);
    border-radius: 50%;
    animation: scaleCircle 0.25s linear forwards;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Added initial opacity */
}

.welcome-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 30px; /* Increased padding */
    border-radius: 15px; /* Increased border-radius */
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards, pulsateBorder 1s infinite;
    animation-delay: 0.5s;
    z-index: 200;
    transform-origin: center center;
    border: 3px solid #fba31e; /* Increased border thickness and changed color */
    font-family: Arial, sans-serif; /* Added font-family */
}

.logo {
    display: block;
    max-width: 150px; /* Increased size */
    margin: 20px auto;
}

.fixedList {
    margin-bottom: 20px;
}

.text-animation {
    position: absolute;
    top: calc(50% + 250px); /* Adjusted top position */
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px; /* Decreased font size */
    font-family: Arial, sans-serif;
    opacity: 1;
}

.word {
    display: inline-block;
    white-space: nowrap;
}

.letter {
    opacity: 0;
    animation: waveAnimation 1s infinite;
}



@keyframes waveAnimation {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes scaleCircle {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulsateBorder {
    0% {
        box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.8); /* Increased box shadow and changed to 3px */
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 140, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.8); /* Increased box shadow and changed to 3px */
    }
}

#container {
    display: flex;
    min-height: 92vh;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
    padding: 1rem;
    margin-top: 1rem;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    padding: 1rem;
    margin-top: 1rem;
}
.btn-register {
    width: 100%; /* Make the button width 100% */
}
.form-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; /* Adjust max-width as needed */
}
.password-guidelines {
    background-color: #f0f0f0;
    border-left: 5px solid #17a2b8;
    padding: 10px;
    margin-bottom: 20px;
}

.btn-primary[type="submit"] {
    width: 100%;
}

.password-link {
    text-align: center;
    margin-top: 10px; 
}