.sso-forgotPass {
	background-color: #252321;
	
    position: absolute;
    height: calc(100% + 4px);
    width: 400px;
    top: -2px;
    left: calc(100% - 400px);
	
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.5);
	
    -webkit-transition: 500ms ease-in-out;
    -moz-transition: 500ms ease-in-out;
    -o-transition: 500ms ease-in-out;
    transition: 500ms ease-in-out;
    
    display: none;
}

.sso-forgotPass-innerPanel {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
	
	overflow: hidden;
}

.sso-forgotPass-logoPanel {
    position: relative;
    height: 40%;
    width: 100%;
    top: 0px;
    left: 0px;
	
	overflow: hidden;
}

.sso-forgotPass-logoImg {
	background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
	
    position: relative;
    height: calc(100% - 150px);
    width: 100%;
    top: 0px;
    left: 0px;
    margin-top: 50px;
	
    object-fit: contain;
}

.sso-forgotPass-logoTxt {
	background-color: transparent;
	
	color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: bold;
	
    position: absolute;
    height: 50px;
    width: 100%;
    top: calc(100% - 60px);
    left: 0px;
}

.sso-forgotPass-txtPanel {
    border-bottom: solid rgba(255, 255, 255, 0.8) 1px;
	
    position: relative;
    height: 40px;
    width: 350px;
    top: 0px;
    left: calc(50% - 175px);
    margin-bottom: 15px;
}

.sso-forgotPass-icon {
	position: absolute;
    height: 100%;
    width: 40px;
    top: 0px;
    left: 0px;
	
    object-fit: contain;
}

.sso-forgotPass-txt {
	background-color: transparent;
    border: none;
	
    color: white;
    font-size: 20px;
    font-weight: bold;
	
    position: absolute;
    height: 100%;
    width: calc(100% - 45px);
    top: 0px;
    left: 45px;
    padding-left: 10px;
}

.sso-forgotPass-button {
	background-color: rgba(231, 76, 60, 1.0);
    border-radius: 10px;
	
	color: white;
	font-size: 20px;
    font-weight: bold;
	
    position: relative;
    height: 45px;
    width: 350px;
    top: 0px;
    left: calc(50% - 175px);
    margin-top: 10px;
    margin-bottom: 15px;
	
    cursor: pointer;
	
    -webkit-transition: 500ms ease-in-out;
    -moz-transition: 500ms ease-in-out;
    -o-transition: 500ms ease-in-out;
    transition: 500ms ease-in-out;
}

.sso-forgotPass-button:hover {
    background-color: rgb(192, 57, 43);
}