html {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
}

h2 {
    color: white !important;
    font-weight: 600 !important;
}

body {
    background-image: url("/static/images/backgroundps.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin: 0;
    font-family: "DM Sans", sans-serif !important;
    justify-content: center;
}

.form-control {
    background-color: transparent !important;
    border-color: white !important;
    box-shadow: none !important;
    color: white !important;
    border-left: none !important;
}

.form-control::placeholder {
    color: white !important;
    font-weight: 100;
}

.message {
    color: white;
}

.card {
    background-color: transparent !important;
    border-color: white !important;
    color: white !important;
}

p {
    font-weight: 200;
    padding: 0;
    margin: 0;
}

.btn-custom:hover {
    background-color: #4169E1 !important;
    color: white !important;
    border-color: #4169E1 !important;
}

.btn-custom {
    background-color: white !important;
    color: #4169E1 !important;
}

.btn-custom:active {
    background-color: #4169E1 !important;
    color: white !important;
    border-color: #4169E1 !important;
    transform: scale(0.95);
}

h5 {
    color: white !important;
}

.logo-img {
    width: 200px;
    height: auto;
}

.header-card {
    background-color: white !important;
    opacity: 0.9;
    padding: 5px;
    border-radius: 50;
}

.custom-text {
    color: #2C3594 !important;
    font-size: 32px;
    letter-spacing: 4px;
    font-weight: 400;
}

.row .steps {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.steps .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    color: #2C3594;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.steps .circle.active {
    background-color: white;
    color: #2C3594;
    height: 35px;
    width: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.steps .circle.current {
    position: relative;
    z-index: 2;
    font-size: 24px;
    height: 50px;
    width: 50px;
    font-weight: 700;
}


.steps .circle.current::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #001f3f, transparent 40%, #001f3f);
    z-index: -1;
    animation: rotate-border 2.5s linear infinite;
}


.steps .circle.current::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: white;
    z-index: -1;
}



@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.steps .progress-bar {
    position: absolute;
    height: 7px;
    width: 100%;
    background-color: transparent;
    border: 1px solid white;
    z-index: -1;
}

.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    transition: width 0.4s ease;
    border: 1px solid white !important;
}

h5 {
    font-weight: 300 !important;
    color: white !important;
}

.input-group-text {
    background-color: transparent !important;
    color: white !important;
    border-right: none !important;
}