/* RESET STYLES */
* {
    margin: 0;
    padding: 0;
    font-family: Tahoma, Geneva, sans-serif;
    box-sizing: border-box;
}

/* BODY AND HTML STYLES */
html{
    min-height: 100vh; /* Para ang gradient ay sakop ang buong page */
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    

    font-family: Tahoma, Geneva, sans-serif;
    font-size: 16px;
    background: linear-gradient(to bottom, #011529, #025cd1);
    color: white;
    line-height: 1.6;
    /* padding-bottom: 80px;  */
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 65px;  /* Adjust based on your design */
    margin-right : 5px;
    filter: brightness(120%); 
    filter: drop-shadow(0 0 10px #fff); 
    /* filter: brightness(100%); */
}

.company-name {
    margin-left: 20px;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.auth-links {
    font-size: 1.2em;
}

.auth-links a {
    margin-left: 10px;
    margin-right: 10px; /* Add space between the pipe and the links */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Verdana', sans-serif; 
    font-size: .8em;
}


.auth-links a:hover {
    color: gold;
}

/* MAIN CONTENT */
.heading-content {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for better contrast */
    color: #ffffff;
    border-radius: 10px;
    margin-bottom: 50px; /* Space between the content and the footer */
}


.heading-content h1 {
    font-size: 2em;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.main-content {
    width: 70%;
    margin: auto;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Raised effect */
    margin-bottom: 50px;
    position: relative;
    /* padding-bottom: 120px; */
}

.main-content h1 {
    font-size: 2em;
    font-weight: 900;
    color: #011529; /* Dark blue to match the overall theme */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Softer text shadow */
}


/* TYPOGRAPHY STYLES */
h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

/* FOOTER */
.footer {
    background-color: #011529;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100; 
}

.footer p {
    margin: 5px 0;
}

/* ADDITIONAL PADDING TO ENSURE CONTENT DOESN'T OVERLAP FOOTER */
body {
    padding-bottom: 80px; /* Ensures there's always space between the content and footer */
}

/* Sunken container */
.sunken-container {
    background-color: #e0e0e0; /* Light background color */
    border-radius: 10px;
    padding: 20px;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5); /* Inset shadow for sunken effect */
    position: relative;
    margin-top: 3px; /* Slight margin between main content and sunken container */
}