@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
    font-family: "Inter", sans-serif;
}
*{
    box-sizing: border-box;
    box-shadow:none;
}

h1{
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin: 15px 0;
}
h2{
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}
h6{
    font-size: 19px;
    line-height: 27px;
    padding: 0;
    margin: 7px 0;
    text-align: justify;
}
p{
    font-size: 16px;
    line-height: 27px;
    padding: 7px 0;
    margin: 0;
}

.registration{
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #fff;
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
    display: block;
    width: fit-content;
    margin: 20px 0 0;
}
.registration:hover{
    background: #fff;
    color: #0d4a91;
}
.signin {
    background: linear-gradient(135deg, #0d4a91, #1599be);
    background-size: 200% 200%;
    padding: 8px 24px;
    color: #ffffff;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

    &:hover {
        background-position: right center;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 10px rgba(21, 153, 190, 0.35);
        color: #fff;
    }

    &:active {
        transform: scale(0.97);
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.25);
        transform: skewX(-25deg);
        transition: 0.7s;
    }

    &:hover::before {
        left: 130%;
    }
}


.signup {
    background: transparent;
    padding: 8px 24px;
    color: #0d4a91;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;

    /* Gradient Border */
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(135deg, #0d4a91, #1599be);

    background-origin: border-box;
    background-clip: padding-box, border-box;

    &:hover {
        background-image:
            linear-gradient(135deg, #0d4a91, #1599be),
            linear-gradient(135deg, #0d4a91, #1599be);

        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(13, 74, 145, 0.25);
    }

    &:active {
        transform: scale(0.97);
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.25);
        transform: skewX(-25deg);
        transition: 0.7s;
    }

    &:hover::before {
        left: 130%;
    }
}

.navbar-nav{
    gap: 25px;
}

.logo-img{
    width: 130px;
}
.navbar{
    background-color: #ffffff;
    border-bottom: 1px solid #b4b4b4;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0;
}


/**banner-sec*/
.banner-sec{
    background-color: #0043a8;
    color: #fff;
}
.banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content{
    padding: 10em 0;
}

/**login-sec*/
.login-sec {
    background: linear-gradient(135deg, #0d4a91, #1599be);
    min-height: calc(115vh  - 125px);
    display: flex;
    align-items: center;
    padding: 3em 0;
}

.login-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.login-input {
    padding: 8px 15px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.login-input:focus {
    border-color: #1599be;
    box-shadow: 0 0 0 4px rgba(21, 153, 190, 0.15);
    outline: none;
}
.form-label{
    font-size: 15px;
    color: #333;
    font-weight: 600;
    padding: 0 10px;
    margin-bottom: 8px;
}

/**footer*/
.footer{
    background-color: #eee;
    text-align: center;
    color: #000;
    padding: 10px 0;
}

/**back-to-home*/
.back-btn{
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    color: #272727;
    width: 100%;
    display: block;
    margin: 15px 0 0;
    font-weight: 600;
}