   /* Global reset for consistent margin, padding, and box-sizing across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling the body to center content with a background gradient */
body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
     background: linear-gradient(135deg, #f4f3ef, #D9B38C);
    /*background:  #f4f3ef;
   
    /*background: linear-gradient(135deg, #8E6B3A, #D9B38C);*/

   
}

/* Container to center the login card on the page */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

/* Login card that holds both the image and the form */
.login-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left side of the login card containing the image */
.card-left {
    width: 50%;
    overflow: hidden;
}

/* Styling the image to cover the entire left side */
.card-left .image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right side of the login card containing the form */
.card-right {
    width: 50%;
    padding: 50px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title of the form */
.title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: #a05334;
    text-align: center;
}

/* Welcome message below the title */
.welcome {
    font-size: 20px;
    margin-top: -10px;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Grouping label and input fields together */
.input-group {
    margin-bottom: 16px;
}

/* Styling the labels above input fields */
.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #898989;
    font-family: 'Poppins', sans-serif;
}

/* Styling the input fields */
.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
}

/* Actions section containing buttons and links */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Primary button styling */
.actions .btn {
    padding: 10px 20px;
    background-color: #a05334;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for buttons */
.actions .btn:hover {
    background-color: #b66a4c;
    transform: scale(1.05);
}

/* Styling for the forgot password link */
.actions .forgot-password {
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for the forgot password link */
.actions .forgot-password:hover {
    color: #0056b3;
}

/* Divider text for alternative login options */
.or-divider {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #999;
}

/* Google Sign-In button styling */
.google-signin .google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background-color: #303030;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Margin between the Google icon and the text */
.google-signin .google-btn .google-icon {
    margin-right: 10px;
}

/* Hover effect for the Google Sign-In button */
.google-signin .google-btn:hover {
    background-color: #3367d6;
    transform: scale(1.05);
}

/* Styling the Create Account section */
.create-account {
    font-size: 12px;
    text-transform: uppercase;    
    text-align: center;
    margin-top: 20px;
}

/* Styling the Create Account link */
.create-account a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for the Create Account link */
.create-account a:hover {
    color: #0056b3;
}

/* Styling for the image credit section */
.image-credit {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.image-credit a {
    color: #007BFF;
    text-decoration: none;
}

.image-credit a:hover {
    text-decoration: underline;
}

/* Media Query for responsiveness on smaller screens */
@media (max-width: 768px) {
    /* Stacking the login card vertically on small screens */
    .login-card {
        flex-direction: column;
    }

    /* Hiding the left side image on small screens */
    .card-left {
        display: none;
    }

    /* Making the right side form full-width */
    .card-right {
        width: 100%;
        padding: 30px 72px;
    }

    /* Adjusting title size for smaller screens */
    .title {
        font-size: 28px;
    }

    /* Adjusting welcome text size for smaller screens */
    .welcome {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* Adjusting input padding for smaller screens */
    .input-group input {
        padding: 8px;
    }

    /* Adjusting button padding and font size for smaller screens */
    .actions .btn,
    .google-signin .google-btn {
        padding: 10px;
        font-size: 14px;
    }
}
/* Styling the select dropdown (Country) same as input fields */
.input-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    appearance: none; /* removes browser default arrow for consistency */
    cursor: pointer;
}

/* Custom arrow for the select dropdown */
.input-group select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}