/* Master styles */
*{
    margin: 0px;
}


body, html{
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-image: url("images/background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}


a {text-decoration: none; }

.page_container{
    display: flex;           /* establish flex container */
    justify-content: center; /* center items vertically */
    align-items: center;     /* center items horizontally */
    height: 90vh;
    width: 100%;
    padding: 20px;
    margin: 20px;
    position:relative;
    z-index: 100;

}


.main_container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 90%;
    max-width: 100%;
}

.footer{
position: absolute;
font-size: 0.75em;
bottom: 0;
width: 100%;
color:black;
text-decoration: none;
text-align: center;
background-color: white;
opacity: 0.75;
}


/* Content container */

.content_container{
    display: inline-block;
    height: 50%;
    width: 50%;
    overflow: auto;
}

.content_container > * {
    opacity: 1;
}

.content_title{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    margin: 20px;
    padding: 10px;
}

.content_title > h1{
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff; /* Neon glow effect */
}


.content_body{
    margin: 20px;
    line-height: 200%;
    font-size: 2vh;
}

.content_body  a{
    text-decoration: black underline;
    color: black;

}


.form_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between buttons */
}

.button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #00ffff; /* Neon Blue border */
    border-radius: 30px;
    color: #00ffff; /* Neon Blue text color */
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Added box-shadow transition */
}

.button:hover {
    background-color: rgba(0, 255, 255, 0.2); /* Slightly transparent neon blue on hover */
    color: #fff; /* White text on hover */
    box-shadow: 0 0 10px #00ffff; /* Neon glow on hover */
}

p {
    font-size: 1.2em;
    text-shadow: 0 0 5px #00ffff; /* Subtle neon glow for paragraphs */
}