@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fffbe6;
    overflow: hidden;
}
.loader-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(207,0,62,0.12);
    padding: 48px 32px 32px 32px;
    text-align: center;
    z-index: 1;
    min-width: 320px;
}
.logo {
    width: 90px;
    margin-bottom: 18px;
}
.loader-text {
    display: block;
    font-size: 1.25rem;
    color: #cf003e;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}
.loader {
    margin: 0 auto;
    border: 6px solid #ffd100;
    border-top: 6px solid #cf003e;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.background-image {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/img/images.jpg') center center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}