/*
   Title: Neo Setup
   Author: QBIT
   Date: 03/09/2025

   File path: ../../../../uploads/
*/

/* Root styles */
:root {
    --purple: #7c3aed;
    --violet: #a855f7;
    --pink: #ec4899;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

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

html {
    font-size: 100%;
}

body {
    min-height: 100dvh;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 45%, var(--pink) 100%);
    background-attachment: fixed;
}

h1,h2 {
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif; 
    color: #fff;
    line-height: 0.8;
    margin-bottom: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

/* Button styles */
.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8em;
    border: solid 1px #ec4899;
    border-radius: 0.2rem;
    background-color: #ec4899;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease-in-out;
    padding: 0.625rem 0.9375rem;
}

.btn:hover {
    border: solid 1px #333;
    background-color: #333;
    color: #fff;
}

.more {
    border: solid 1px #fff;
    background-color: transparent;
}

.btns li {
    display: inline;
    margin-right: 0.3125rem;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

 a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 48rem) { 
    .col-1,.col-2,.col-3,.col-4 {
        flex: 0 0 100%;
    }

    form {
        width: 100%;
    }
}