@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.form-container {
    max-height: 100vh;
}

.no-pad {
    padding: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Add this CSS to your existing CSS or style block */
.overlay-container {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 50%; /* Adjust the top value to move the text higher or lower */
    left: 50%; /* Adjust the left value to move the text left or right */
    transform: translate(-50%, -50%);
    color: white;
    font-size: 54px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle text shadow for better visibility */
}

.btn-large {
    padding: 12px 35px;
}

.box-container {
    padding: 30px 50px;
    background-color: #002333;
    font-size: 20px;
    color: aliceblue;
    box-shadow: 5px 5px 15px 0px rgba(168, 168, 168, 1);
    border-radius: 5px;
}

.box-num {
    width: 80px;
    height: 80px;
    background: #ffdbaa;
    color: #002333;
    font-weight: 600;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-item {
    background-color: #ffdbaa;
    margin-right: 18px;
    padding: 4px 6px;
    border-radius: 50px;
    box-shadow: 3px 3px 15px 0px rgba(168, 168, 168, 0.25);
}

.form-container {
    max-width: 500px;
    max-height: 500px;
    overflow-y: auto;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.error-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

.img-container {
    max-width: 200px;
}

.error-text {
    font-size: 20px;
    margin-top: 30px;
}

.error-button {
}

.alert {
    color: white;
    background: green;
    display: inline-block;
    padding: 4px 10px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hide-text {
    animation: fadeOut 1s forwards 1.5s;
}

.brand-title a {
    text-decoration: none;
    color: darkcyan;
}

.brand-title ul li a {
    text-decoration: none;
    color: dimgray;
}

.brand-title a:visited {
    color: darkcyan;
}

.btn-primary {
    background-color: #53736a;
}

.btn-secondary {
    background-color: #6a8c69;
}

.btn-stella {
    background-color: #A62B1F;
    color: white;
}

.btn-stella:hover {
    background-color: #8C1F28;
    color: white;
}

.btn-primary:hover {
    background-color: #044040;
    color: white;
}
