.back-to-home-btn {
    transition: transform 0.2s ease-in-out;
}

.back-to-home-btn:hover {
    transform: translateX(-5px);
}

.btn-transparent {
    background-color: transparent;
    border: none;
    color: #1a4f32; /* Dark green color for text */
}

.btn-transparent:hover {
    background-color: transparent;
    color: #1a4f32; /* Keep dark green color on hover */
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
}
.input-group-text {
    border-radius: 0 0.5rem 0.5rem 0;
    border: 1px solid #ced4da;
    border-left: none;
}
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
}
.password-toggle:hover {
    color: #495057;
}
.password-input-container {
    position: relative;
}
.password-input-container .form-control {
    padding-right: 45px;
}
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-content p:first-child {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}
.modal-content img {
    display: block;
    margin: 0 auto 10px auto;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.slide-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s;
}
.slide-container.active {
    opacity: 1;
}
.slide-container img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    top: 0;
    left: 0;
}
.slide-quote {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    z-index: 5;
    opacity: 0;
    transition: opacity 1s;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 40px;
}
.slide-quote.active {
    opacity: 1;
}
.slide-quote .quote-text {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 400;
    font-style: italic;
}
.slide-quote .quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f8f9fa;
}
.slide-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1A2A22;
    background: linear-gradient(45deg, rgba(26, 42, 34, 1) 21%, rgba(26, 42, 34, 0.2) 47%);
    z-index: -1;
}