

:root {
/* centralized color definitions. */
--link: #0066b3;
--link-disabled: #d0d0d0;
--button-bg: #0066b3;
--button-text: white;
--button-text-disabled: #d0d0d0;
--button-bg-hover: #00519e;
--button-bg-disabled: #e2e3e3;
--alert-border: #c10c0d; 
--alert-bg: #fff2f2;
--alert-text: #c10c0d;
--info-border: rgb(1, 83, 155); /* also text */
--info-bg: rgb(217, 249, 255);
--field-bg: #e6e6e6;
--field-underline: #b3b2b2;
--form-text: #474747;
--form-bg: rgb(230,230,230);
}

body{
	margin:0px;
	
}

h1 {
	text-align:center;
	font-size: 2.5em;
	color: black;
	font-weight: normal;
	padding-top: 10px;
	padding-bottom: 10px;
	/*margin-top: 15px; */
	margin-bottom: 15px;
}


div.information, div.alert {
    display: flex;
    justify-content: center;
    align-items: center;
    valign-text: middle;
    padding: 5px 5px 5px 34px;
    background-repeat: no-repeat;
    background-position: 9px center;
    font-weight: bold;
    font-size: 13px;
    min-height: 32px;
    margin-bottom: 20px;
}

div.information {
    border: 1px solid var(--info-border);
    background-color: var(--info-bg);
    background-image: url(icon-info.png);
    color: var(--info-border);
}

div.alert {
    border: 1px solid var(--alert-border);
    background-color: var(--alert-bg);
    background-image: url(icon-warning.png);
    color: var(--alert-text);
  
}

input[type="submit"], button[type="submit"]  {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 3px 16px;
	color: white;
	width: 40%;
	height: 2em;
	font-weight: 500;
	font-size: 1.2em;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
	border: none;
	user-select: none;
	background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
	margin:auto; 
}


 .divelink-container {
    max-width: 700px; 
 	margin: 0px auto;
 	text-align:center;
 	background-color: rgba(2, 60, 123, 01);
 	background-image: url("homebackground.webp"); 
 	background-repeat: no-repeat;
	border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 	color: white;
 	font-family: 'Segoe UI', Tahoma, Geneva, sans-serif; 
 	height: 100%; 
 	background-size: 100% 100%; 
 }

  .form-group input, .form-group select, .form-group textarea {
    width: 65%;
    padding: 12px 16px;
    border: none;
    margin:0 auto;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.95);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .form-group input:focus, .form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.5);
    transform: translateY(-1px);
  }

@media (hover: none) and (pointer: coarse) { 

	
	.divelink-container {
		border-radius: 0px;
		max-width: 100%;
		background-size: 100% 100%;
		height: 100%;
		min-height: 100vh;
		font-size: 1.1em;
	}
	
	#container{
		width: 90%;
  		  padding: 5%;
	}
	
	.form-login {
	font-size: 17px;
	padding: 10px;
	margin-bottom: 30px;
	}
	
	.form-login input{
	font-size: 18px;
	margin-top: 10px;
	}
	
	.blue-button input {
	font-size: 20px;
	}
	
	*:focus {
    outline: none !important;
}
}

