/* =========================================
   FINDOUR.PET
   BASE
========================================= */

:root {

    --bg-primary: #040b1c;

    --bg-secondary: #08142b;

    --card-bg: rgba(8,20,43,0.88);

    --border: rgba(255,255,255,0.06);

    --text-primary: #ffffff;

    --text-secondary: #94a3b8;

    --blue: #4f8cff;

    --green: #22c55e;

    --danger: #ef4444;

    --radius: 28px;
}

* {

    box-sizing: border-box;
}

html,
body {

    margin: 0;
    padding: 0;

    background:
        linear-gradient(
            180deg,
            #040b1c 0%,
            #08142b 100%
        );

    color: var(--text-primary);

    font-family:
        Inter,
        system-ui,
        sans-serif;

    min-height: 100vh;
}

a {

    text-decoration: none;

    color: inherit;
}

img {

    max-width: 100%;

    display: block;
}

button,
input,
textarea {

    font-family: inherit;
}

.container {

    width: 100%;

    max-width: 1600px;

    margin: 0 auto;
}

/* =========================================
   MAIN CONTENT
========================================= */

.main-content {

    margin-left: 280px;

    padding: 42px;

    min-height: 100vh;
}

/* =========================================
   BUTTONS
========================================= */

.btn,
.primary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 18px;

    border: none;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s;
}

.btn:hover,
.primary-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 24px rgba(59,130,246,0.22);
}