@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    display: flex;
    overflow: hidden; /* Prevents scrolling on the main page */
}

/* Left Section: Background Image with Red Overlay */
.left-section {
    flex: 1; /* Takes up remaining space on the left */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)), 
                url('../image/reuhub_loginpage.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 50px;
    text-align: center;
}

.left-section img.large-logo {
    width: 350px; /* Large ReU-Hub logo on the left */
    margin-bottom: 20px;
}

.left-section p {
    font-size: 18px;
    font-weight: 600;
    max-width: 500px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Section: Fixed Login Panel */
.right-section {
    width: 450px;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    box-sizing: border-box;
}

.right-section h2 {
    display: none; /* Student Login title is often removed in this modern view */
}

/* Brand Button Styles */
.btn-red {
    width: 100%;
    padding: 15px;
    background-color: #ec1f27; /* Matches red branding */
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
}