/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Main Container */
.container {
    display: flex;
    height: 100vh;
}

/* Left Section */
.left-section {
    width: 50%;
    background: #0d1117;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.left-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.left-section p {
    color: #b1b1b1;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Floating Images */
.floating-images {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 20px;
}

.floating-images img {
    width: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Right Section */
.right-section {
    width: 50%;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 350px;
    text-align: left;
}

.form-container h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #24292f;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #d1d5da;
    border-radius: 5px;
    font-size: 1rem;
}

small {
    font-size: 0.8rem;
    color: #6a737d;
}

button {
    width: 100%;
    background: #24292f;
    color: white;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
}

button:hover {
    background: #1b1f23;
}

/* Links */
p {
    font-size: 0.9rem;
    color: #586069;
    margin-top: 10px;
}

p a {
    color: #0366d6;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

    /* Style for GitHub Logo */
    .EasyInfo-logo {
        width: 180px;  /* Adjust size as needed */
        margin-bottom: 15px;  /* Add space below the image */
    }


    .password-container {
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .password-container input {
        width: 100%;
        padding-right: 40px; /* Space for the icon */
    }
    
    .toggle-password {
        position: absolute;
        right: 10px;
        cursor: pointer;
        font-size: 18px;
        user-select: none; /* Prevent text selection */
    }

    /* Top right sign-in link */
.top-right {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 16px;
}

.top-right a {
    color: rgb(255, 183, 0);
    text-decoration: none;
    font-weight: bold;
}

.top-right a:hover {
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section, .right-section {
        width: 100%;
        padding: 3rem;
    }

    .floating-images img {
        width: 30px;
    }

    /* Top right sign-in link */
    .top-right {
        position: relative;
        padding: 10px;
        top: 5px;
        right: -30%;
        font-size: 16px;
    }
    
    .top-right a {
        color: rgb(255, 183, 0);
        text-decoration: none;
        font-weight: bold;
    }
    
    .top-right a:hover {
        text-decoration: underline;
    }

}
