@font-face {
    font-family: 'FunnelDisplay';
    src: url('resources/fonts/FunnelDisplay.ttf') format('truetype');
}

body {
    background-color: #005E9D;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 16px;
}

.form-box {
    background-color: #ffffff22;
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
}

.logo {
    pointer-events: none;
    user-select: none;
    max-width: 120px;
    margin: 0 auto 24px;
    display: block;
}

.app-name {
    font-family: 'FunnelDisplay', sans-serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

p {
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    background: white;
    color: #005E9D;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.btn:hover,
.btn:focus {
    background-color: #003f6b;
    color: white;
    outline: none;
}

.note {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .form-box {
        padding: 24px 16px;
        border-radius: 8px;
    }

    .app-name {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 14px;
        max-width: 100%;
    }
}
