* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial;
}

/* Navbar */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px;
	background: #2B3D5B;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	color: white;
	height: 70px;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	color: white;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 25px;
	margin-left: auto;
	margin-right: 20px;
}

/*.auth {
	display: flex;
	gap: 10px;
}

.login {
	background: #27AE60;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.login:hover {
	background-color: #ff6677;
	transform: translateY(-2px);
}*/
.auth {
    display: flex;
    gap: 15px;
}

.login {
    background: linear-gradient(135deg, #27AE60, #2ECC71); /* green gradient */
    color: white;
    border: none;           /* remove any border/white line */
    padding: 10px 25px;     /* thoda wide & professional */
    border-radius: 8px;     /* subtle rounded corners */
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* soft shadow */
    transition: all 0.3s ease-in-out;
}

.login:hover {
   background: linear-gradient(135deg, #1E8449, #27AE60); /* darker green on hover */
    transform: translateY(-2px) scale(1.03); /* subtle lift */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* stronger shadow on hover */
}

/*.login {
	background: transparent;
	border: none;
	margin-right: 10px;
}*/
.nav-links li a {
	text-decoration: none;
	color: white;
	padding: 8px 12px;
	transition: all 0.3s ease;
}

.nav-links li a:hover {
	/*color: #ffff;  Accent color */
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	transform: translateY(-2px);
}
/* Logo Main Container */
.logo-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 5px;
}

.logo-box {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding-top: 15px;;
}


.house-shape {
	position: absolute;
    top: -5px;
    left: -2px;
    width: 45px;
    height: 35px;
    border-left: 2px solid #ffffff; 
    border-top: 2px solid #ffffff;
    clip-path: polygon(0% 100%, 0% 35%, 50% 0%, 100% 35%, 100% 100%, 85% 100%, 85% 45%, 50% 20%, 15% 45%, 15% 100%);
    background-color: #ffffff;
}


.window {
	position: absolute;
	top: 18px;
	left: 22px;
	width: 12px;
	height: 10px;
	background: white;
}

/* Text Styling */
.logo-text-wrapper {
	font-size: 26px;
	font-weight: 800;
	margin-left: 8px;
	z-index: 2;
	letter-spacing: 0.5px;
}

.rent-text {
	color: #ffffff;
}

.ify-text {
	color: #a3cf62;
	font-weight: 400; 
}


.bottom-line {
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	margin-top: 2px;
}

/* ================= LOGIN CONTAINER ================= */

.container{
width:850px;
height:500px;

margin:60px auto;
display:flex;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* Left Side */

.brand-side{
/*flex:1;
background:#2B3D5B;
color:white;
display:flex;
align-items:center;
justify-content:center;
text-align:center;*/
width:50%;
height:100%;
flex:1;
background:#2B3D5B;
color:white;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}
.brand-content{
width:100%;
height:100%;
}
.brand-content h1{
font-size:36px;
margin-bottom:10px;
}

.brand-content p{
font-size:16px;
opacity:0.9;
}
.loginpage{
width:100%;
height:100%;
object-fit:cover;
}
.logo-circle{
width:70px;
height:70px;
border-radius:50%;
background:white;
color:#2B3D5B;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
font-weight:bold;
margin:20px auto 0;
}

/* Right Side Form */

.form-side{
flex:1;
padding:40px;
position:relative;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
color:#999;
}

.form-side form{
display:flex;
flex-direction:column;
gap:12px;
margin-top:10%;
}

.form-side label{
font-size:15px;
color:#333;
}

.form-side input{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
outline:none;

}

.form-side input:focus{
border-color:#2B3D5B;
}

/* Button */

.submit-btn{
width:100px;
background:#27AE60;
font-size:15px;
height:40px;
color:white;
border:none;
padding:10px;
border-radius:10px;
cursor:pointer;
margin-top:10px;
transition:0.3s;
display:block;
margin-left:auto;
margin-right:auto;
}

.submit-btn:hover{
background:#ff6677;
}

/* Register Text */

.register{
font-size:15px;
margin-top:10px ;
padding-left:20%;
}

.register a{
color:#2B3D5B;
text-decoration:none;
font-weight:bold;
}

/* Options */

.options{
margin-top:10px;
font-size:15px;
display:flex;
align-items:center;
padding-left:20%;

}

.options a{
 text-decoration:none;
 color:#2B3D5B;
}
footer {
	background: #2B3D5B;
	color: white;
	padding: 60px 20px 0;
}

.footer-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-brand h2 {
	margin-bottom: 15px;
}

.footer-brand p {
	font-size: 14px;
	color: #ddd;
	line-height: 1.6;
}

/* SOCIAL ICONS */
.social-icons {
	margin-top: 15px;
}

.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff20;
	color: white;
	margin-right: 10px;
	font-size: 16px;
	transition: 0.3s;
}

.social-icons a:hover {
	background: #ff4d5a;
	transform: translateY(-3px);
}

/* LINKS */
.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	text-decoration: none;
	color: #ddd;
	font-size: 14px;
	transition: 0.3s;
}

.footer-links ul li a:hover {
	color: #ff4d5a;
	padding-left: 5px;
}

/* CONTACT */
.footer-contact p {
	font-size: 14px;
	color: #ddd;
}

.footer-bottom {
	text-align: center;
	margin-top: 20px;
	padding: 15px;
	background: #7C8594;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box; /* include padding */
}

.footer-map iframe {
	width: 100%;
	height: 150px;
	border-radius: 10px;
}
