/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: white;
}

/* Signup Page Layout */
.signup-container {
    display: flex;
    height: 100vh;
}

/* Left Section (Image & Text) */
.left-section {
    flex: 1;
    background: url('../img/bgr.jpg') no-repeat center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.text-container {
    position: relative;
    color: white;
    max-width: 80%;
}

.text-container h1 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.text-container p {
    font-size: 1rem;
    margin-top: 10px;
    color: white;
}

/* Right Section (Signup Form) */
.right-section {
    flex: 0.5;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 80%;
    max-width: 350px;
    text-align: center;
}

.icon i {
    font-size: 2rem;
    color: #1e1e1e;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

p {
    color: #555;
}

/* Input Fields */
.input-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
}

.input-group i {
    margin-right: 10px;
    color: #777;
}

.input-group input {
    border: none;
    background: none;
    width: 100%;
    outline: none;
    font-size: 1rem;
}

/* Terms and Conditions */
.terms {
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.terms a {
    color: #4c84ff;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    background: #2e2e2e;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #1e1e1e;
}

/* Login Link */
.login-text {
    margin-top: 15px;
    font-size: 0.9rem;
}

.login-text a {
    color: #4c84ff;
    text-decoration: none;
}

.login-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-container {
        flex-direction: column;
    }

    .left-section {
        height: 40vh;
    }

    .right-section {
        flex: 1;
    }
}


@media screen and (max-width: 768px) {
    .header, .footer {
        text-align: center;
        padding: 10px;
    }
    .form-container {
        width: 100%;
        padding: 20px;
    }
    .service-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
    }
}
