* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #245C4F;
    overflow: hidden; /* prevents scrollbars */
}

/* 
Allows background image to be loaded and set to lower opacity
befor everything else.
*/
body::before {
    content: ""; /* Needed for it to load */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('gcsu_background.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: -1; 
    opacity: 0.3; 
}

.main-container {
    position: relative; 
    z-index: 1;
    
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    /* height: 40%; */
    height:auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.logo-container {
    width: 100%;
    padding: 30px 30px 15px 30px;
    display: inline;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
    border-bottom: 1px solid #eee;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    padding:15px;
}

.form-container {
    width: 100%;
    padding: 30px;
    background: white;
}

.form-header {
    /* background: #245C4F; */
    /* background:#fafafa; */
    background:#FFF;
    margin-bottom: 20px;
    font-size: 1.25rem;
    text-align: center;
    color: white;
    width:100%;
    font-weight:normal;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 350; 
    margin-bottom: 5px;
    color: #245C4F;
    text-align: left;
}

.form-group input {
    padding: 10px;
    border: 1px solid #767676; 
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus {
    border-color: #245C4F;
    box-shadow: 0 0 0 3px rgba(36, 92, 79, 0.4); 
    outline: 2px solid #245C4F;
}

.gc_error {
  font-weight:bold;
  color: red;
}

.gc_redirect {
  color: #245C4F;
  font-weight:bold;
  padding: 15px;
  width:auto;
  height:auto;
  background:#FFF;

}

a.havingtrouble {
 color:245C4F;
 text-decoration:none;
 cursor: pointer;

}

a.havingtrouble:hover {
  text-decoration:underline;
}

a.havingtrouble:visited {
 color:245C4F;
 text-decoration:none;
 cursor: pointer;

}



.mygc_header {
 background:#fff;
 /* background:#245C4F; */
 /* font-weight:bold; */
}

.mygc_tagline {
	font-weight:bold;
	color:#245C4F;
	background:#FFF;
	
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #245C4F;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    transition: background-color 0.2s ease;
    margin-bottom:10px;
}

.btn-submit:hover {
    background-color: #1b453b;
}
