/*====================================================================
	1. Client Portal
======================================================================*/


@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* General reset and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", "Rajdhani", sans-serif;
}

/* Input boxes consistency */
.subscribe-one__form .input-box input {
    width: 100%; /* Ensure inputs take full width of the container */
    height: 50px; /* Consistent height */
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px; /* Ensure padding is consistent for both inputs */
    text-align: left;  /* Left align text inside the input */
}

/* Centering the content inside the wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1300px; /* Keep dimensions */
    background: #3399cc;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
}

/* Make form a flexbox to center its contents */
.wrapper form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center form contents horizontally */
    width: 50%; /* Adjust width to fit inside wrapper */
}

/* Heading style inside the wrapper */
.wrapper h1 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
}

/* Center the input boxes inside the wrapper */
.wrapper .input-box {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

/* Adjust input width inside the wrapper */
.input-box input {
    width: 80%; /* Make input smaller so it's centered */
    height: 50px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 20px;
    color: #151313;
    padding: 10px 45px 10px 20px;
    text-align: left;  /* Left align text inside the input */
}

/* Adjust icon positioning */
.input-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* Center the button inside the wrapper */
.wrapper .btn {
    width: 80%;
    height: 50px;
    background: black;
    border: none;
    outline: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

/* Button hover effect inside the wrapper */
.wrapper .btn:hover {
    background: #ddd;
    color: black;
}

.subscribe-one__form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Keep input boxes centered within the form */
    justify-content: center;
    max-width: 400px; /* Smaller form width */
    margin: 0 auto;
}

/* Adjust input boxes within the subscribe form */
.subscribe-one__form .input-box {
    width: 300px; /* Reduce width of input fields */
    margin-bottom: 20px; /* Keep original spacing */
    /* Inputs remain centered in the form container */
}

.subscribe-one__form input {
    width: 100%;
    height: 50px; /* Slightly smaller height */
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 18px; /* Adjust font size */
    padding: 10px;
    text-align: left;  /* Left align text inside the input */
}

/* Change password input text color to white */
.subscribe-one__form input[type="password"] {
    color: #fff;
}

/* Adjust login button within the subscribe form */
.subscribe-one__form button {
    width: 300px; /* Match input width */
    height: 50px;
    background: black;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin: 10px auto 0; /* 10px top margin, auto left/right for centering */
    text-align: center;  /* Center text horizontally */
    display: flex;       /* Use flexbox to center content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
}

/* Button hover effect for the subscribe form */
.subscribe-one__form button:hover {
    background: #ddd;
    color: black;
}

.tg-element-title {
    font-weight: normal;
}