/* General Body Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a2238; /* Dark blue background */
    color: #f4f4f4; /* Light text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-image: url('https://i.imgur.com/R22f29Y.png'); Subtle background pattern */
    background-size: cover;
    background-position: center;
}

/* Main Container for the Login Form */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 400px; /* Max width for the form area */
    padding: 20px;
    box-sizing: border-box;
}

/* Logo Styling */
.logo img {
    width: 150px; /* Adjust logo size as needed */
    margin-bottom: 20px;
}

/* Title Styling */
.title {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #d4af37; /* Gold color for the title */
    margin-bottom: 30px;
}

/* Form Styling */
.login-form {
    width: 100%;
}

/* Input Group for Icon and Input Field */
.input-group {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle underline */
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px; /* Padding to make space for the icon */
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-group input:focus {
    outline: none;
    border-bottom-color: #d4af37; /* Highlight color on focus */
}

/* Forgot Password Link Styling */
.forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.forgot-password:hover {
    color: #fff;
}

/* Register Button Styling */
.register-btn {
    width: 100%;
    padding: 15px;
    background-color: #3c3c3c; /* Dark grey background */
    border: none;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-btn:hover {
    background-color: #4a4a4a; /* Slightly lighter grey on hover */
}
