﻿:root {
    --primary-color: #ff0000; /* Red color */
    --primary-hover-color: #ff8383; /* Red color */
    --secondary-color: #ffffff; /* White color */
    --text-color: #333333; /* Dark gray for text */
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}



body {
    margin: 0;
    padding:0;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
#page-top {
    margin: 0 !important;
    padding: 0 !important;
}
/* Object fit utility for images */
.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Material Icons alignment */
.material-icons-round {
    vertical-align: middle;
    font-family: 'Material Icons Round' !important;
}

/* Ensure sections don't have default margins */
section {
    margin: 0;
    padding: 0;
}

    /* Fix for negative margin on features */
    section[style*="margin-top: -4rem"] {
        margin-top: -4rem !important;
    }


article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

a {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
}

    a:hover {
        color: var(--primary-hover-color);
        text-decoration: underline;
    }



.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 12px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    margin-top: 20px; /* added space above button */
}


    /* Login button hover */
    .btn-primary:hover {
        background-color: var(--primary-hover-color);
        box-shadow: 0 6px 14px rgba(47, 164, 244, 0.35);
        color: #fff;
    }

    /* Login button focus (keyboard) */
    .btn-primary:focus, .btn-primary.focus {
        background-color: var(--primary-color) !important;
        box-shadow: 0 0 0 3px rgba(47, 164, 244, 0.35) !important;
    }




.card {
    border-radius:24px;
}

    .card.card-primary .card-header {
        background-color: var(--primary-color);
        color:#fff;
        border-radius: 24px;
    }
