@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    font-size: 16px;
}

a {text-decoration: none;color: #7d3ff8;}
a:hover {color: #8d71dc;transition: .4s;}
h1 {width: 100%;text-align: center;}

.fullwidth {width: 100%;}
.inputLabel {display: flex;font-size: 14px;font-weight: 600;margin-bottom: 5px;}
.inputLabel.spaceBetween {justify-content: space-between;}
input {height: 40px;border: 1px solid #ccc;border-radius: 5px;padding: 0 10px;font-size: 14px;background-color: transparent;}

/* Buttons */
.button {display: inline-block;padding: 10px 20px;cursor: pointer;font-size: 14px;border-radius: 4px;position: static;}
.button.blue {background: #007BFF;color: white;}
.button.blue:hover {background: #0056b3; transition: .4s;}

/* Main Content */
main {flex: 1;}
.centerModule {width: 100%;max-width: 1200px;margin: 0 auto;}
.centerModule > .pageHolder {margin:35px 0;padding:15px 25px;background: white;border-radius: 5px;box-shadow: 0 1px 2px rgba(0,0,0,0.1);min-height: 100%;}


/* Header */

header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
header nav a:hover {
    color: #007BFF;
}
header button {
    padding: 0.5rem 1rem;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
header button:hover {
    background: #0056b3;
}

/* Footer */

footer {
    background: #111;
    color: #ccc;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5vw 1.5vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
footer h3 {
    margin-bottom: 1rem;
    color: #fff;
}
footer ul { list-style: none; padding: 0;}
footer ul li {
    margin-bottom: 0.5rem;
}
footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #fff;
}
footer .social a {
    margin-right: 1rem;
    font-size: 1.2rem;
}
footer .bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}