 /*
Get Started WEebsite Page CSS
*/
 body {
            font-family: Arial, sans-serif;
            background-image: url('../images/main.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin: 0;
            padding: 0;
            color: #fff;
        }
        
        .container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        h1 {
            text-align: center;
			text-underline-offset: 0.3em;
			text-decoration: underline;
            margin-bottom: 30px;
            color: #4CAF50;
        }
        
        h2 {
            color: #4CAF50;
            margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 15px;
			margin-right: 20px; /* Adds 10px space between inputs */
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="password"],
		input[type="number"],
        select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 14px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
        }
		
		#apartmentNumber {
			width: 30%;
		}
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
			
        }
        
        .col {
            flex: 1;
            padding: 0 10px;
            min-width: 200px;
        }
        
        .checkbox-group {
            margin-top: 10px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            cursor: pointer;
        }
        
        .checkbox-label input {
            margin-right: 10px;
        }
        
        .required:after {
            content: " *";
            color: #ff6b6b;
        }
        
        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 12px 20px;
            margin-top: 20px;
            cursor: pointer;
            border-radius: 14px;
            font-size: 16px;
            width: 25%;
			display: block; /* Ensures it takes full width behavior */
			margin-left: auto; /* Centers the button */
			margin-right: auto; /* Centers the button */
			text-align: center;
			
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #45a049;
        }
        
        .error {
            color: #ff6b6b;
            font-size: 14px;
            margin-top: 5px;
        }
		      .footer-text {
            background-color: #000;
            padding: 10px 0;
            width: 100%;
            text-align: center;
            z-index: 2;
            font-size: 16px;
            height: 40px;
        }
		
		footer {
			background: #000;
			color: #fff;
			text-align: center;
			padding: 20px 10px;
			margin-top: 20px;
			position: relative;
		}

		.footer-text {
			font-size: 18px;
			font-weight: bold;
			margin-bottom: 10px;
		}

		.footer-content {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 10px;
		}

		.social-icons {
			display: flex;
			justify-content: center;
			gap: 15px;
			margin-bottom: 10px;
		}

		.social-icons a {
			color: #fff;
			font-size: 22px;
			transition: 0.3s;
		}

		.social-icons a:hover {
			color: #4CAF50;
			transform: scale(1.2);
		}

		.footer-credits {
			font-size: 14px;
			font-weight: 400;
			opacity: 0.8;
		}

		.copyright {
			font-size: 14px;
			font-weight: bold;
		}

        
        /* Creating a dark overlay effect */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
            z-index: 1;
        }
		/* Add these styles to your existing getStarted.css file */

/* Error message styles */
.error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    padding: 3px 0;
    font-weight: bold;
}

/* Server-side error container */
.server-errors {
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.server-errors .error {
    margin: 5px 0;
}

/* Input field with error */
.input-error {
    border: 1px solid #ff6b6b !important;
    box-shadow: 0 0 3px #ff6b6b;
}

/* Focus styles for input fields */
input:focus, select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Password strength indicator */
.password-strength {
    height: 5px;
    margin-top: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-weak {
    background-color: #ff6b6b;
    width: 30%;
}

.strength-medium {
    background-color: #ffaa2c;
    width: 60%;
}

.strength-strong {
    background-color: #4CAF50;
    width: 100%;
}