* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", sans-serif;

    background: linear-gradient(
        180deg,
        #f7f4fc 0%,
        #ffffff 100%
    );

    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 420px;
}

.login-container {
	display: grid;
	align-content: start;
	padding: 20px;
}

.create-account-title {
	font-weight: bold;
    font-size: 1.5em;
    color: #24124d;
}

.logo-area {
    text-align: center;
    margin-bottom: 50px;
}

.logo-icon {
    font-size: 72px;
    margin-bottom: 10px;
}

.logo-area h1 {
    font-size: 52px;
    color: #24124d;
    margin-bottom: 10px;
}

.logo-area p {
    color: #7a7a95;
    font-size: 18px;
    line-height: 1.4;
}

h2 {
    color: #24124d;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #4b4b63;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    height: 58px;

    border: 1px solid #d8d8e6;
    border-radius: 14px;

    padding: 0 18px;
    font-size: 16px;

    outline: none;
    transition: .3s;
}

.input-group input:focus {
    border-color: #6c3cf0;
    box-shadow: 0 0 0 4px rgba(108,60,240,.12);
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-password a {
    color: #6c3cf0;
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    height: 60px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(
        90deg,
        #6c3cf0,
        #4c1fd8
    );

    color: white;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
}

.btn-primary:hover {
    opacity: .95;
}

.separator {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.separator span {
    margin: 0 15px;
    color: #777;
}

.btn-secondary {
    width: 100%;
    height: 60px;

    border: 2px solid #6c3cf0;
    border-radius: 14px;

    background: white;
    color: #6c3cf0;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
}

.about-link {
    display: block;
    text-align: center;

    margin-top: 35px;

    color: #6c3cf0;
    font-weight: 600;
    text-decoration: none;
}

/* Toast Notification */

.toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    min-width: 280px;
    max-width: 90%;

    padding: 16px 20px;

    background: #dc3545;
    color: #fff;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 500;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease;

    z-index: 9999;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

.toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: #28a745;
}

.toast.error {
    background: #dc3545;
}

.toast.warning {
    background: #ff9800;
}

.error {
    border-color: #dc3545 !important;
}

/* Mouse pointer click effect */
div.clickEffect{
	position:fixed;
	box-sizing:border-box;
	border-style:solid;
	border-color:#000000;
	border-radius:50%;
	animation:clickEffect 0.4s ease-out;
	z-index:99999;
}
@keyframes clickEffect{
	0%{
		opacity:1;
		width:1px;
		height:1px;
		margin:-0.5px;
		border-width:0.5rem;
	}
	100%{
		opacity:0.2;
		width:40px;
		height:40px;
		margin:-20px;
		border-width:0.03rem;
	}
}

.registerReturn {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 5px;
    border-radius: 10px;
	text-align: center;
}

.errorMessage {
	border: 1px solid #ff0000;
	background-color: #ff000073;
}

.successMessage {
	border: 1px solid #004d06;
	background-color: #0080008c;
}

.displayNone {
	display: none;
}