@CHARSET "UTF-8";

body {
    background-image: url("/jakarta.faces.resource/img/sponsor/login_bg.webp.xhtml");
    background-repeat:no-repeat;
    background-position: center center;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-size: cover;
}
.btn-connect-cs {
    animation: pulse 3s infinite;
}

header.navbar {
    height: 40px;
    opacity: 0.8;
    background: #6d6d6d;
}
header .cs-edc-logo {
    background-position: left;
    margin-left: 15px;
}

.logo-container {
    position: absolute;
    width: 178px;
    height: 178px;
    padding: 5px;
    border-radius: 100px;
    background: #e8e8e8;
    opacity: 0.8;
}

.promoteur-logo {
    position: relative;
    left: auto;
    right: auto;
}
.edclin-txt:after {
    content: "by ClinSearch";
    font-size: 45%;
    position: absolute;
    bottom: -3px;
    right: 25%;
}

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