/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
}

/* Header Styling */
.logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Professional black background */
    padding: 20px 0;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-icon {
    width: 90px; /* Logo size */
    height: auto;
}

.text {
    text-align: left;
}

.title {
    font-size: 42px; /* Title size */
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.subtitle {
    font-size: 16px;
    letter-spacing: 1.5px;
    margin: 5px 0 0;
    text-transform: uppercase;
    color: #bbb;
}

/* Google Sign-In Button Styling */
.g_id_signin {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

#g_id_onload {
    display: flex;
    justify-content: center;
}

button, a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #004aad;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
}

button:hover, a:hover {
    background: #003680;
}

/* Intro Section Styling */
.intro {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.2rem;
}

.intro h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro p {
    margin-bottom: 20px;
}

/* Form Styling (Complete Profile Form) */
form {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

form label {
    font-size: 1.1rem;
    margin-bottom: 1px;
}

form input {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1px;
}

form input:focus {
    border-color: #004aad;
    outline: none;
}

form button {
    background: #004aad;
    color: white;
    padding: 12px;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background: #003680;
}

/* Captcha Styling */
.captcha {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.captcha img {
    border: 1px solid #ddd;
    padding: 5px;
    max-width: 200px;
}

.captcha input {
    padding: 10px;
    margin-left: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* User Info Section */
.user-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
}

.user-info a {
    color: #004aad;
    text-decoration: none;
}

.user-info a:hover {
    text-decoration: underline;
}

/* Footer Section Styling */
footer {
    text-align: center;
    padding: 10px 0;
    width: 100%;
    background-color: #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-header {
        padding: 15px 0;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-icon {
        width: 80px;
    }

    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 14px;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }
}
