* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('../img/1.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.disease-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.disease-label {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    color: #e48449;
    text-align: center;
}

a {
    font-family: 'Bungee', cursive;
    font-size: 1.2rem;
    color: #181b22;
    background-color: #c1d671;
    padding: 0.7rem 2rem;
    text-decoration: none;
    border-radius: 40px;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
}

a:hover {
    transform: scale(1.05);
    background-color: #d4733a;
}

/* iPad Responsive */
@media screen and (max-width: 1024px) {
    .disease-label {
        font-size: 2.5rem;
    }
    
    a {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

