﻿body {
    margin: 0;
    font-family: 'Dm Sans';
    background-color: #0a0631;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: url("/PreProd/Prism/Content/Images/bgimg.png?ref=@RefNo_Img");
    background-repeat: no-repeat;
    background-attachment: fixed; /* ✅ keeps background fixed */
    background-size: contain; /* ✅ scales but keeps aspect ratio */
    background-position: left top; /* ✅ adjust position as needed */
}

.svg-logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

    .svg-logo img {
        width: 220px;
        height: auto;
        margin-top: 56px;
        margin-left: 142px;
    }

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 80px;
}

.login-box {
    background: #fff;
    padding: 28px;
    border-radius: 30px;
    width: 295px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    height: auto;
    margin-top: 22px;
    margin-right: 15px;
}

    .login-box h2 {
        margin-bottom: 25px;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        color: #0a0631;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: #333;
        font-size: 17px;

    }

    .form-group input {
        width: 250px;
        padding: 8px 20px;
        border-radius: 20px;
        border: 1px solid #ccc;
        font-family: DM Sans;
        font-size: 18px;
        height: 33px;
    }

.hint {
    font-size: 14px;
    color: #7e8899;
    margin-top: -10px;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 8px;
}

.btn {
    padding: 10px 18px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary {
    background: #0a0631;
    color: white;
    width: 100%;
}

    .btn-primary:hover {
        background: #1a1560;
    }

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: white;
    padding: 10px 0;
    background: transparent; /* or add a bg color if needed */
}

    footer a {
        color: white;
        margin: 0 8px;
        letter-spacing: .66px;
    }

        footer a:hover {
            text-decoration: underline;
        }
