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

body {
    font-family: arial, sans-serif;
    background: #fff;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: -10vh;
}

/* Logo */
.logo-container {
    width: 80vw !important;
    max-width: 80vw !important;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.logo {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
}

/* Search Wrapper */
.search-wrapper {
    width: 100%;
    max-width: 584px;
    margin-bottom: 30px;
}

.search-container {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    box-shadow: none;
    transition: box-shadow 0.2s;
}

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

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

/* Buttons */
.buttons {
    display: flex;
    gap: 12px;
}

.btn {
    background: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: arial, sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.1s;
}

.btn:hover {
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background: #f8f9fa;
    border: 1px solid #dadce0;
    color: #202124;
}

.btn:active {
    border: 1px solid #4285f4;
}

/* Footer */
footer {
    background: #f2f2f2;
    padding: 15px 30px;
    border-top: 1px solid #e4e4e4;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer a {
    color: #70757a;
    text-decoration: none;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 90vw;
    }
    
    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
}
