body {
    background-color: #FFDE59;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #004445;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 24px;
    color: #004445;
}

.arrow {
    width: 50px;
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.container {
    max-width: 400px;
    text-align: center;
}

.form-label {
    font-size: 18px;
    font-weight: bold;
    color: #004445;
}

.form-control {
    border: 2px solid #004445;
    border-radius: 5px;
}

.btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}
