* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: Flapjack;
  src: url(TAYFlapjack.woff);
}

@font-face {
  font-family: Flapjack2;
  src: url(TAYFlapjack.woff2);
}


body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #00ae6f 0%, #eda7ca 100%);
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 100px;
}

.password-input {
    width: 100%;
    padding: 20px 25px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    outline: none;
    background: white;
    transition: all 0.3s ease;
    padding-left: 140px; /* Space for the toucan */
}

.password-input:focus {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.password-input::placeholder {
    color: #999;
    font-style: italic;
}

.toucan-image {
    position: absolute;
    left: -60px;
    top: -80px;
    width: 150px;
    height: 150px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.toucan-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.humming-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.input-wrapper:hover .toucan-image {
    transform: scale(1.1) rotate(5deg);
}

.title {
    color: white;
    font-family: Flapjack;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: Flapjack2;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .input-wrapper {
        margin-top: 60px;
    }
    
    .toucan-image {
        width: 120px;
        height: 120px;
        left: -45px;
        top: -65px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 18px 22px;
        padding-left: 115px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .toucan-image {
        width: 100px;
        height: 100px;
        left: -35px;
        top: -55px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 16px 20px;
        padding-left: 100px;
    }
    
    .input-wrapper {
        margin-top: 80px;
    }
}