﻿
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* White background */
    color: #333333; /* Neutral text color */
    margin: 0;
    padding: 0;
}

.login-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
   

}

.login-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  
}


    .login-left img {
        max-width: 70%;
        height: auto;
    }

.login-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* White background for login form */
}

.login-box {
    background-color: #ffffff;
  
    border-radius: 8px;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
   

}

h2 {
    margin-bottom: 10px;
    color: #0F83D8; /* Primary red for headings */
}

p {
    color: #555555; /* Slightly darker neutral for paragraph text */
}

.social-btn {
    display: inline-block;
    width: 48%; /* Allow space for two buttons */
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #ffffff;
    text-align: center; /* Center align text and icon */
    box-sizing: border-box;
    margin: 0 1%; /* Margin between buttons */
    font-size: 16px; /* Adjust text size */
}

    .social-btn i {
        margin-right: 8px; /* Space between icon and text */
        font-size: 18px; /* Adjust icon size */
    }

.google-btn {
    background-color: #0F83D8; /* Red for Google button */
}

.fb-btn {
    background-color: #3b5998; /* Facebook blue */
}

/* Flexbox container to align buttons */
.social-buttons-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.google-btn {
    background-color: #0F83D8; /* Red for Google button */
}

.fb-btn {
    background-color: #3b5998; /* Facebook Blue */
}

form {
    margin-top: 20px;
}

input[type="text"], input[type="email"], input[type="number"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #f9f9f9; /* Light background for input fields */
    color: #333333;
     border: 1px solid red;
}

    input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="number"]::placeholder, input[type="password"]::placeholder {
        color: #999999; /* Lighter placeholder text */
    }




.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555555; /* Neutral text color */
}

    .remember-forgot a {
        color: #0F83D8; /* Red color for links */
    }

.login-btn {
    width: 100%;
    padding: 8px;
    background-color: #0F83D8; /* Primary red for the sign-in button */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display:block;
}

    .login-btn:hover {
        background-color: #bb1f1f; /* Darker red on hover */
    }

a {
    color: #0F83D8; /* Red links */
    text-decoration: none;
}















/* Media Query for Mobile Screens */
@media screen and (max-width: 768px) {
    body {
        background-color: #ffffff; /* Keep background white on mobile */
    }

    .login-container {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        justify-content: center; /* Center the login form */
        align-items: center;
        padding: 10px 10px;
    }

    .login-left {
        display: none; /* Hide the illustration section on small screens */
    }

    .login-right {
        flex: none; /* Remove flex styling */
       
       
    }

    .login-box {
        width: 100%;
        padding: 20px; /* Reduce padding for mobile */
        box-shadow: none;
        border-radius: 5px; /* Slightly rounded corners */
        margin: 0;
    }

    /* Larger inputs and buttons for mobile */
    input[type="text"], input[type="email"], input[type="password"] {
        padding: 14px; /* Increase padding for mobile for larger touch targets */
        margin-bottom: 15px;
        font-size: 16px; /* Slightly larger font size */
    }

    .login-btn {
        padding: 14px; /* Larger button for easier tapping */
        font-size: 18px; /* Increase button text size */
    }

    /* Adjust social buttons */
    .social-btn {
        margin: 15px 0; /* Add more space between social buttons */
        padding: 14px;
        font-size: 16px;
    }

    /* Adjust links and text */
    .remember-forgot {
        flex-direction: column; /* Stack "Remember Me" and "Forgot Password?" vertically */
        text-align: center; /* Center align the text */
        margin-bottom: 20px;
    }

        .remember-forgot a {
            margin-top: 10px; /* Add space between elements */
            font-size: 14px;
        }

    /* Make the text responsive */
    h2 {
        font-size: 24px; /* Slightly larger for mobile */
    }

    p {
        font-size: 14px; /* Reduce font size for better readability */
    }

    /* Reduce link size */
    a {
        font-size: 14px;
    }
}

