/* General body styling */
body {
    background-color: #0d0d0d; /* Dark background */
    color: #d4d4d4; /* Light text for contrast */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevent scrolling */
}

/* Container styling */
.container {
    text-align: center;
    background-color: #1a1a1a; /* Slightly lighter dark background */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
}

/* Heading styling */
.container h1 {
    font-size: 2.5rem;
    color: #00ff00; /* Bright green for emphasis */
    margin-bottom: 40px;
}

/* Login/Register buttons container */
.loginRegisterButtons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* Button styling */
.loginRegisterButtons button {
    flex: 1; /* Make buttons take equal space */
    background: linear-gradient(90deg, #00b300, #009900); /* Gradient background */
    color: #ffffff; /* White text */
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.loginRegisterButtons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-45deg);
    transition: left 0.5s ease;
}

.loginRegisterButtons button:hover::before {
    left: 100%;
}

.loginRegisterButtons button:hover {
    background: linear-gradient(90deg, #009900, #00b300); /* Reverse gradient on hover */
    box-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00; /* Glowing effect */
    transform: scale(1.1); /* Slight zoom effect */
}

#rightsReserved {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.linkedInLogo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.linkedInLogo:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

/* Footer styling */
.ending {
    position: absolute;
    bottom: 0;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    color: #d4d4d4;
}