.custom-label {
    font-weight: 400;
    font-size: 1.3rem;
}

body {
    background-color: #398BAF;
}
#header {
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

#header img {
    margin: 0;
    height: 47px;
    width: 133px;
    color: #398BA5;
}

.card {
    margin: auto;
    margin-bottom: 30px;
    width: 100%;
    max-width: 532px; /* Set maximum width */
    height: auto;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card p {
    margin-top: 5px;
}

#resendActivationButton {
    border: none;          /* Ensure no border is applied */
    padding: 10px 15px;    /* Set padding to maintain consistent button size */
}

@media (max-width: 576px) {
    /* Adjust styles for small devices (e.g., phones) */
    .card {
        max-width: 100%;
        padding: 10px;
    }

    .card p {
        font-size: 0.9rem; /* Decrease font size for smaller screens */
    }

    h3.mb-4 {
        font-size: 1.5rem; /* Decrease heading font size for smaller screens */
    }
}