*{
	box-sizing: border-box;
	font-family: montserrat;
}
body{
	margin:0;
	background: #0b1537;
	color:white;
}
.login-side-div{
	background: #02044a;
	width: 50%;
	position:  fixed;
	height: 80%;
	margin-top: 7%;
	border-radius: 0px 20px 20px 0px;
	padding: 50px;
}
.successOrError{
    background: white;
    color: black;
    width: 50%;
    padding: 10px 15px;
    border-radius: 10x;
    margin-bottom: 30px;
    font-size: 13px;
}
.login-image{
	width: 50%;
	margin-left: 25%;
}
.side-info{
	width: 50%;
	margin-left: 25%;
	text-align: center;
	margin-top:20%;
}
.side-info p{
	font-size: 9px;
	margin-top:0;
	line-height: 15px;
}
.side-info h4{
	margin-bottom: 0;
}
.login-form{
	width: 25%;
	background: rgba(255, 255, 255, 0.15);
  	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 	backdrop-filter: blur(2px);
  	-webkit-backdrop-filter: blur(2px);
  	height: 500px;
  	position: fixed;
  	left: 60%;
  	top:25%;
  	border-radius: 20px;
  	font-size: 9px;
  	padding: 20px;
}
.icehub-logo{
	width: 50%;
	text-align: center;
	margin-left: 25%;
}
.login-form h4{
	margin:0;
	font-size: 13px;
	text-align: center;
}
.sub-title{
	text-align: center !important;
}
.login-form p{
	margin:0;
}
.login-form label{
	display: block;
}
.login-form input[type="text"],
.login-form input[type="tel"],
.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #0b1537;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 5px;
}

.remember-me{
	float: left;
}
.password-forgot{
	float: right;
	color:white;
	text-decoration: none;
}
.login-form button{
	display: block;
	width: 80%;
	margin-left: 10%;
	clear: all !important;
	margin-top:50px;
	padding: 5px 10px;
	margin-bottom: 20px;
	background: #02044a;
	color: white;
	border:0;
	border-radius: 5px;
}
.next-page{
	text-decoration: none;
	color:blue;
}

.signup-form{
	top:0;
	border-radius: 0;
	height: 100%;
}

.first-nav{
	display: table;
	width: 100%;
	padding: 0 5%;
	background: #02044a;
	position: fixed !important;
}
.dashboard-logo{
	width: 10%;
	float: left;
}
.nav-profile-image{
	background: white;
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
.profile-wrapper {
    position: relative;
    display: inline-block;
    float: right;
    margin-top:20px;
}

.profile-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.profile-photo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border:1px solid white;
}

.profile-chevron {
    font-size: 8px;
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.profile-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
    width: 160px;
    display: none; /* hidden by default */
    z-index: 999;
}

.profile-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    transition: background 0.2s ease;
}

.profile-dropdown a:hover {
    background: #f1f1f1;
}

/* When dropdown is active */
.profile-dropdown.show {
    display: block;
}

/* Chevron rotation */
.profile-chevron.rotate {
    transform: rotate(180deg);
}

.sidebar{
	background: #02044a;
	color:white;
	position: fixed;
	display: table;
	width: 20%;
	height: 100vh;
	border-top:2px solid white;
	padding-left: 20px;
	padding-top: 30px;
}
.sidebar a{
	color: white;
	text-decoration: none;
	padding: 15px 10px;
	display: block;
	font-size: 13px;
}
