/* login_styles.css */

/* Style from the <style> block */
body {
    font-family: 'Outfit', sans-serif !important;
}

/* Style for the logo image and text container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 55px; /* Equivalent to p-b-55 utility class */
}

/* Style for the logo image */
.logo-image {
    width: 100px;
    height: auto;
    margin-right: 10px;
}

/* Style for the 'RNEXUS' text */
.logo-text {
    font-weight: bold;
    font-size: 24px;
}

/* Style for the password toggle/eye icon */
.toggle-password {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}