body {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #3a3a3a, #4a4a4a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn-custom {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: white;
    color: black;
    border: 2px solid white;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: auto;
}
.btn-custom:hover {
    background-color: black;
    color: white;
    border-color: black;
    transform: scale(1.05);
}
.form-container {
    max-width: 350px;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid white;
    margin: 10px;
    font-family: 'Poppins', sans-serif;
}
.form-container h4 {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
.form-label {
    text-align: left;
    display: block;
}
.button-container {
    text-align: center;
}
.title-style {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
a[href="https://ndcreations.net"] {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
a[href="https://ndcreations.net"]:hover {
    color: #bbb;
}
.footer-style {
    background-color: #222;
    color: white;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-align: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.logo-img {
    max-width: 300px;
    height: auto;
}