* {
  margin: 0;
  box-sizing: border-box; /* Padding/borders included in element's total height */
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout {
	width: 100%;
    overflow-y: auto;
    flex: 1;
    margin: auto;
	box-sizing: border-box;
	background-image: url(banner-bg-image.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-clip: content-box;
}

.flex-centered {

    display: flex;
    justify-content: center;
    align-items: center;    
}

.container {
    background-color: #163129ad;
    border-radius: 20px;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.message {
    font-size: 1.125rem;
    color: white;
    max-width: 400px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.loader {
    animation: pulse 1.5s infinite;
}

.loaderIcon {
    width: 3rem;
    height: 3rem;
    color: #3b82f6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}