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

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #202124;
    min-height: calc(100vh + 1px);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 56px 0 20px;
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    height: 92px;
    max-width: 100%;
}

.main-content {
    width: 100%;
    max-width: 584px;
}

.search-container {
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 20px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.search-box:hover,
.search-box:focus-within {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.search-input {
    flex: 1;
    height: 46px;
    font-size: 16px;
    color: #202124;
    border: none;
    outline: none;
    background: transparent;
}

.search-btn {
    height: 36px;
    padding: 0 12px;
    background-color: #6B9EFF;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-left: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background-color: #5A8AEE;
}

.search-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

@media (max-width: 480px) {
    .logo {
        height: 72px;
    }

    .search-box {
        max-width: 97%;
        margin: 0 auto;
    }

    .search-btn {
        padding: 0 16px;
        font-size: 13px;
    }
}
