@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');


:root {
    --blue: #003366;
    --grey: #616263;
    --light-blue: rgba(0, 51, 102, 0.1);
    --white: #FDFDFD;
    --mid-blue: rgba(0, 51, 102, 0.75);
    --dm-sans: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }

html, body {
    width: 100%;
}

body {
    background-color: var(--white);
    font-family: var(--dm-sans);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img, iframe { max-width: 100%; height: auto; }

.blue-btn {
    background-color: var(--blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.blue-btn:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.red-btn {
    background-color: #cc0000;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.red-btn:hover {
    background-color: #cc0000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--grey);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.5);
    outline: none;
}

.btn-close {
    outline: none !important;
    box-shadow: none !important;
}