@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    
    background:
    url('../images/invest-bg.png') center center / cover no-repeat, linear-gradient(359.96deg,
    #2596be -107.04%,
    #2596be 103.76%);
    position: relative;
    overflow: hidden;
    min-height: 950px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body::before,
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-repeat: repeat;
    background-size: 200px 200px;
    /* Adjust for density of dots */
    opacity: 0.6;
    animation: moveDots 10s linear infinite;
}

body::before {
    background-image: radial-gradient(circle, white 2px, transparent 2px);
    animation-direction: alternate;
}

body::after {
    background-image: radial-gradient(circle, white 2px, transparent 2px);
    animation-direction: alternate-reverse;
    opacity: 0.3;
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
        /* Adjust for desired movement */
    }

    100% {
        transform: translate(-30px, -30px);
    }
}

.container{
     min-height: 100vh;
    height: 100%;
}


.form {
background: transparent !important;
border-top: 6px solid #fff;
border-left: 1px solid #fff;
border-right: 1px solid #fff;
border-bottom: 1px solid #fff;
border-radius: 12px !important;
padding: 30px 30px;
animation: shine 4s infinite alternate;
transition: box-shadow 0.5s;
}

  
.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;

}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    /* border-bottom: 2px solid #ccc; */
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}


.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

/* .input-field input:is(:focus, :valid) ~ i{
} */

.input-field i.icon{
    left: 0;

}

.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}


.form .text{
    color: #c5c7cc;
    font-size: 14px;
}

.form a.text{
    color: #c5c7cc;
    text-decoration: none;
}

.form a:hover{
    text-decoration: underline;
    color: #fff;
}

.form .button{
    margin-top: 35px;
}

.btn.btn-primary {
    background: linear-gradient(135deg,
    #2596be,
    #2596be) !important;
    border: 3px solid #ffff;
    /* Lighter shade of the gradient color */
    border-radius: 5px;
    /* Optional for rounded edges */
    color: #fff;
    /* Text color for contrast */
    cursor: pointer;
    transition: 0.3s ease;
}

.btn.btn-primary:hover {
    border-color: #ffff !important;
    /* Slightly brighter on hover */
    box-shadow: 0 4px 8px rgba(110, 66, 193, 0.555) !important;
    /* Add a soft shadow effect */
    color: #000000 !important;
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}

