﻿@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat/montserrat-v31-latin-regular.woff2') format('woff2');
}

body {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    background-color: #ffffff;
}

.top-bar {
    background-color: #451284;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 12px;
}

    .top-bar a {
        padding: 2px 5px 2px 5px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
    }

        .top-bar a:hover {
            background-color: #00CA9F;
            font-weight: 600;
            padding: 2px 5px 2px 5px;
            border-radius: 4px;
            color: #FFF;
        }

.language-selected {
    font-weight: 600;
    background-color: #00CA9F;
    padding: 2px 5px 2px 5px;
    border-radius: 4px;
    color: #FFF;
}

.font-aquamarine {
    color: #00CA9F;
}

.font-regal-purple {
    color: #451284;
}


.login-container {
    min-height: 78vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width:150vh;
}

.login-card {
    border-radius: 20px;
    background-color: #f3f3fb;
    padding: 2rem;
    min-width: 360px;
    min-height: 600px;
}

.btn-primary-purple {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; 
    background: linear-gradient(180deg, #451284, #7949F0);
    border: 0px;
    border-radius: 25px;
    color: #fff;
    padding: 10px;
    transition: 0.4s;
    font-size: 14px;
    margin-bottom: 10px;
}

    .btn-primary-purple:hover {
        background: linear-gradient(180deg, #7949F0, #451284);
        color: #00CA9F;
    }

.btn-secondary-purple {
 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; 
    background: transparent;
    border: 2px solid #7949F0;
    border-radius: 25px;
    color: #7949F0;
    padding: 10px;
    transition: 0.4s;
    font-size: 14px;
    margin-bottom: 10px;
}

    .btn-secondary-purple:hover {
        border: 2px solid #7949F0;
        background: #7949F0;
        color: #FFF;
    }

a {
    color: #7949F0;
    margin: 0 0.5rem;
    text-decoration: none;
}
    a:hover {
        color: #451284;
        text-decoration: none;
    }

.home-circle-btn {
    position: fixed;
    top: 26px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: #00CA9F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    font-size: 1.5rem;
    transition: background 0.2s;
}

    .home-circle-btn:hover {
        background: #0BA151;
        color: white;
    }

.footer-links {
    text-align: center;
    margin: 1rem;
    font-size: 14px;
}

    .footer-links a {
        font-weight: 600;
        color: #7949F0;
        margin: 0 0.5rem;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.hero-text {
    font-family: "Montserrat", sans-serif;
    font-weight: normal; 
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1rem;
    color: #451284;
}

.logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .logo img {
        max-height: 60px;
    }

.form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ccc;
}


.circle-green {
    position: absolute;
    background: #00CA9F;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: 12%;
    left: 42%;
    z-index: 0;
}

.circle-purple {
    position: absolute;
    background: #451284;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: 35%;
    right: 28%;
    z-index: 0;
}

.sch-text-sm {
  font-size:small;
}

.carousel-section {
    flex: 1;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 650px;
}

    .carousel-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 1s ease-in-out;
    }

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #d0c3ff;
        transition: background 0.3s;
    }

        .carousel-indicators button.active {
            background: #6c3cff;
        }