﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fd;
    margin: 0;
    font-family: "Manrope", sans-serif;
}

/* Container Layout */
.container {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Left Section */
.left-section {
    flex: 0.815;
    background: #0f1624;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .left-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .left-section p {
        font-size: 1rem;
        line-height: 1.5;
    }

.mockup {
    margin-top: 2rem;
    text-align: center;
}

    .mockup img {
        max-width: 100%;
        border-radius: 8px;
    }

.relative {
    position: relative;
    top: -35px;
}

.abs {
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 65px;
    right: 0px;
}

.tagline {
    font-size: 30px;
    font-weight: 600;
    color: #f8f9fb;
    text-align: center;
    margin-top: 4rem;
}

.tagline-2 {
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    color: #c1c5cd;
}
/* Right Section */
.right-section {
    flex: 1.15;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    width: 70%;
    padding-top: 5rem !important;
}

.login-box {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.logo {
    /*margin-top: 1.8rem;*/
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
}

    .logo > svg {
        width: 150px;
    }

    .logo .check-circle {
        background: #2196f3;
        height: 5rem;
        width: 5rem;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }

        .logo .check-circle svg {
            width: 3rem;
        }

h3 {
    margin-bottom: 1rem;
    color: #333;
}

p {
    color: #666;
    margin-bottom: 1.5rem;
}

.input-group {
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
}

    .input-group.input {
        margin-bottom: 1rem;
    }

    .input-group i {
        position: absolute;
        margin: 0.5rem 1rem 0rem 1rem;
    }
.input-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 12px;
    top: 53%;
    transform: translateY(-50%);
}
    .icon {
        background-repeat: no-repeat;
        background-size: contain;
        display: inline-block;
        width: 20px;
        height: 20px;
    }
    .eye-slash-icon {
        background-image: url('./eye-slash.svg');
    }
    .eye-icon {
        background-image: url('./eye.svg');
    }
    .input-group input {
        width: 100%;
        padding: 10px 10px 10px 55px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 0.875rem !important;
        height: 46px;
        background-color: #f8f9fb;
        color: #495057;
        outline: none;
        transition: border-color 0.3s ease;
        font-weight: 500;
    }

        .input-group input:enabled:hover {
            border-color: #2196f3;
        }

input[type="text"]:focus {
    border-color: #2196f3 !important;
}

.forgot-password {
    display: block;
    margin: 0.5rem 0rem 2rem 0rem;
    text-decoration: none;
    text-align: right;
    font-size: 12.8px;
    font-weight: 500;
    color: #747474;
}

.login-btn {
    width: 100%;
    background-color: #3278ff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    height: 46px;
}

    .login-btn:enabled:hover {
        background: #0d89ec;
        color: #ffffff;
        border-color: #0d89ec;
    }

.support {
    font-size: 14px;
    color: #747474;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .support a {
        color: #747474;
        text-decoration: none;
        font-weight: 500;
    }

    .support svg {
        color: black;
        margin-right: 1rem;
        cursor: pointer;
    }

@media (max-width: 868px) {
    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
        padding: 3rem;
    }

    .login-box {
        width: 100%;
        max-width: 400px;
    }

    .logo {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .input-group input,
    .login-btn {
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 30px !important;
    }

    .input-group input,
    .login-btn {
        font-size: 0.9rem;
        width: 100%;
    }

    .login-box h3 {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

.heading {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.heading-tagline {
    font-size: 14px;
    color: #747474;
}

.heading-tagline {
    width: 100%;
    text-align: center;
    margin-bottom: 2.5rem;
}

.or-hr {
    color: #747474;
    display: flex;
    flex-wrap: nowrap;
    margin: 0.5rem;
    align-items: center;
}

    .or-hr hr,
    .or-hr div {
        display: flex;
    }

    .or-hr hr {
        height: 1px;
        width: 45%;
    }

    .or-hr div {
        margin: 0.5rem 0.8rem;
    }

.error-text {
    margin-bottom: 0.8rem;
    color: #ff5a4f;
    margin-top: -10px;
    font-size: 12px;
    text-align: left;
    margin-left: 5px;
}

    .error-text ul {
        list-style: none
    }


.link-btn {
    text-decoration: none;
     width: 100%; 
    background-color: #3278ff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
     height: 46px; 
}

.ng-dirty {
    border-color: #f44336 !important;
}

.btn-contact {
    color: #2196f3 !important;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}