﻿:root {
    /*Orange*/
    --basecolor: orange;
    --accentcolor: darkorange;

    /*Pale Gold*/
    /*--basecolor: #C0B283;
    --accentcolor: #A89A63;*/

    /*Red*/
    /*--basecolor: #FF6961;
    --accentcolor: #DF4941;*/

    /*Green*/
    /*--basecolor: #99CC33;
    --accentcolor: #79AC13;*/
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

.wave{
	position: fixed;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: -1;
}

.container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap :7rem;
    padding: 0 2rem;
}

.img{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.login-content{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.img img{
	width: 500px;
}

form{
	width: 360px;
}

.login-content img{
    height: 100px;
}

.login-content h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 2.9rem;
}

.login-content .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one{
	margin-top: 0;
}
.i img{
    position:absolute;
    width: 30px;
    height: 30px;
}
.orange-icon{
    opacity: 0;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input-div > div{
    position: relative;
	height: 45px;
}



.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
    color: #999;
	font-size: 18px;
	transition: .3s;
}

.div:has(.input[required]) h5
{
    color: orange;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: orange;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #38d39f;
}
.input-div.focus > .i > .orange-icon{
	opacity: 1;
    transition: 0.3s;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}

.input-div.pass{
	margin-bottom: 4px;
}

.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #FFA500, #FFD700, #FF8C00);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	background-position: right;
}
.announcement-section{
  position:relative;
  margin-left: 10%;
  margin-top: 100px;
  height: 90%;
  border-radius: 50px;
  width: 90%;
  cursor: default;
 
}
.announcement{
    padding: 20px;
    letter-spacing: 0.04em;
    text-align: justify;
    word-break: normal;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    border-radius: 15px;
    overflow: hidden;
    color: #333;
    background: linear-gradient(80deg, rgba(255,165,0,1) 0%, rgba(255,190,51,1) 34%, rgba(255,255,255,1) 100%); 
}
.announcement h1{
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
}

.hidden
{
    position: fixed;

    top: 0px;
    left: 0px;

    width: 0vw;
    height: 0vh;

    z-index: -1;

    display: none;
}

.popupoverlay
{
    position: fixed;

    top: 0px;
    left: 0px;

    bottom: 0px;
    right: 0px;

    background-color: rgba(0,0,0,0.8);
}

.popupwindow
{
    position: absolute;

    top: 0px;
    left: 0px;
    max-width: 500px;

    background-color: silver;
    border: solid;
    border-width: 1px;
    border-color: black;
}

.popupwindow-title
{
    padding: 0px 10px 0px 10px;

    height: 50px;
    line-height: 50px;

    font-size: 18pt;

    background-color: black;

    color: white;
}

.popupwindow-message
{
    padding: 10px;

    background-color: silver;

    color: black;
}

.popupwindow-actions
{
    padding: 0px 10px 10px 10px;

    background-color: silver;
}

.popupalert
{
     z-index: 4;
}

.popupbutton
{
    margin: 2px;

    height: 37px;
    width: 100px;

    background-color: var(--basecolor);
    border-color: black;
    border-style:solid;
    border-width: 1px;
    border-radius: 5px;

    line-height: 35px;
    font-size: 12pt;

    cursor: pointer;

    transition: background-color 0.2s;
}

.popupbutton:hover
{
    background-color: var(--accentcolor);
}

.actionsection-center
{
    text-align:center;
}

.validationsummary
{

}

.validationsummary ul
{
    list-style: none;
    padding: 10px 20px;
    margin: 10px;
    color: red;
    background-color: lemonchiffon;
    border: solid;
    border-width: 1px;
    border-color: red;
    border-radius: 15px;

    line-height: 30px;

    box-shadow: 0px 0px 5px red;
}

