
* {
    box-sizing: border-box;
    outline: none;
    padding: 0;
    margin: 0;

    -webkit-tap-highlight-color: transparent;
}

.navbar {
    top: 0;
    display: flex;
    position: relative;
	height: clamp(64px, 10vw, 90px);
	width: auto;
    align-items: center;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.navbar_logo img {
	width: auto;
    height: clamp(30px, 6vw, 50px);
    padding-left: 20px;
}

.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-page .sign-msg p {
    color: black;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    font-family: var(--based-font);
}

.sign-msg {
    display: flex;
    padding: 50px 30px;
}

.box {
	display: flex;
	padding: 32px;
	width: 500px;
	height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 10px hsl(0deg 0% 0% / 0.3);
}

.sign-in-box {
	display: flex;
	width: 100%;
	height: auto;
	flex-direction: column;
}

.red-asterisk {
    color: #b40000;
}

.required-field-msg {

    font-size:medium;
    font-weight: lighter;
    font-family: var(--based-font);
}

.sign-in-box .input-group {
    margin-top: 25px;
}

.sign-in-box .input-group input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight:400;
    font-size: 19px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: var(--based-font);
    background-color: transparent;
}

.keep-me-signed-in * {
	cursor: pointer;
}

.keep-me-signed-in {
    display: flex;
    padding: 15px 0;
}

.keep-me-signed-in p {
    display: flex;
    font-size: 700;
    padding-left: 10px;
    font-family: var(--basic-font);
}

.keep-me-signed-in .details-msg-btn {
	border: 0;
    font-size: medium;
    font-weight: bold;
    color: #b40000;
    padding-left: 5px;
    text-decoration:underline;
    background-color: transparent;
}

.password_recovery a {
	display: block;
	width: fit-content;
	padding: 5px 0;
	color: #b40000;
	font-size: medium;
	font-family: var(--based-font);
}

.login-form {
    display: flex;
    flex-direction: column;
	position: relative;
	height: 100%;
}

.login-form .sign-in {
    cursor: pointer;
    color: white;
    background-color: #b40000;
    border: none;
    width: fit-content;
    border-radius: 30px;
    font-size: large;
    font-weight: bold;
    padding: 18px 24px;
	margin-top: 25px;
    align-self: flex-end;
    font-family: var(--based-font);
    box-shadow: 0 5px 10px hsl(0deg 0% 0% / 0.3);
}

.join-now-box {
    display: flex;
    min-height: 300px;
    width:     500px;
    align-items: center;
    justify-content: center;
    padding: 32px 32px;
    text-align: center;
}

.join-now {
    display: flex;
    flex-direction: column ;
    align-items: center;
}

.join-now h2 {
	color: #b40000;
    padding-bottom: 10px;
	text-transform: uppercase;
	font-size: medium;
    font-family: var(--based-font)
}

.join-now p {
    padding-bottom: 15px;
    font-family: "Noto Sans", sans-serif;

}

.join-now .join-now-btn {
    cursor: pointer;
    color: #b40000;
    border: 1px solid #b40000;
    border-radius: 30px;
    font-size: large;
    font-weight: bold;
    padding: 10px 15px;
    background-color: transparent;
    font-family: var(--based-font);
}

.join-now .join-now-btn:hover {
    background-color: #ffe3e3;
}

.input-group label {
	/* font-size: large; */
    font-family: var(--based-font);
}

.input-group label span {
	color: #b40000;
}

/* Dynamic Form Validation style */
.error-msg {
    display: none;
}

.error-msg .error_box {
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-left: 20px;
    color: #b40000;
    font-family: var(--based-font);
}

.error-msg img {
    margin-right: 5px;
    width: 20px;
}

.password_recovery a:hover {
    text-decoration: none;
}


@media (max-width: 720px) {
    .box {
        box-shadow: none;
        width: clamp(100px, 95vw, 650px);
        height: auto;
    }

    .join-now-box {
        width: clamp(100px, 95vw, 650px);
    }
}