*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:Arial, Helvetica, sans-serif;
}

body{
	margin: 0;
    	min-height: 100vh;
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    	align-items: center;
    	background: #031E2F;
}

.login-container{
	width:90%;
	max-width:400px;
	background:white;
	padding:40px;
	border-radius:10px;
	box-shadow:0 10px 30px rgba(0,0,0,.2);
}

h1,h2{
	text-align:center;
	margin-bottom:25px;
}

input{
	width:100%;
	padding:12px;
	margin:10px 0;
	border-radius:5px;
	border:1px solid #92D400;
}

button{
	width:100%;
	padding:12px;
	border:none;
	border-radius:5px;
	background:#92D400;
	color:white;
	font-size:16px;
	cursor:pointer;
}

button:hover{
	background:#031E2F;
}

a{
	display:block;
	text-align:center;
	margin-top:20px;
}

#toast{
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    min-width: 280px;
    max-width: 90%;
    padding: 14px 22px;
    background: #333;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

#toast.show{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

#toast.success{
    background: #92D400;
    color: black;
}

#toast.error{
    background: #dc2626;
}

.logo-container {
    margin-bottom: 20px;
    text-align: center;
}

.logo {
    max-width: 220px;
    width: 100%;
    height: auto;
}

select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #92D400;
    background: white;
    color: #031E2F;
    font-size: 16px;
    cursor: pointer;
}

select:disabled {
    background: #e9e9e9;
    color: #777;
    cursor: not-allowed;
    border-color: #ccc;
}

select:focus {
    outline: none;
    border-color: #031E2F;
    box-shadow: 0 0 5px rgba(3,30,47,.3);
}

.checkbox-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 15px 0;
    color: #031E2F;
    font-size: 16px;
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    margin: 0 12px 0 0;
    border: 2px solid #92D400;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"]:checked {
    background: #92D400;
    border-color: #92D400;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 18px;
    font-weight: bold;
    left: 4px;
    top: -1px;
}

.checkbox-container label {
    cursor: pointer;
    user-select: none;
}

textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #92D400;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    resize: none;              /* Prevent manual resizing */
    overflow-y: auto;          /* Show scrollbar when needed */
    min-height: 120px;
    max-height: 200px;
}

textarea:focus {
    outline: none;
    border-color: #031E2F;
    box-shadow: 0 0 5px rgba(3,30,47,.3);
}
