@charset "utf-8";
/* CSS Documentfor the signin page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('../images/hero_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
 	margin-top: 100px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 120px;
}

.logo h2 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #333;
}

.social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
}

.social-login img {
    width: 20px;
    margin-right: 10px;
}

.google {
    background-color: #fff;
}

.facebook {
    background-color: #fff;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-size: 0.8rem;
    color: #888;
    position: relative;
}

.divider::before, .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ccc;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.toggle-password img {
    width: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    margin-right: 5px;
}

.forgot-password {
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4A69BD;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #365599;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.signup-link a {
    color: #4A69BD;
    text-decoration: none;
    font-weight: bold;
}

.signup-link a:hover {
    text-decoration: underline;
}






.back-to-home {
    display: inline-block;
    margin-top: -600px; 
    font-size: 1rem;
    color: #ffffff;
    text-decoration:underline;
	float:left;
	margin-bottom: 40px;
    
    padding: 10px 15px;
    border-
	radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}


/* Center the link on mobile view */
@media (max-width: 768px) {
    .back-to-home {
        display: inline; /* Make the link a block element */
        text-align: center; /* Center the text */
        margin-left: auto;
		margin-right:auto;
		  position: fixed;
      
		margin-bottom: 40px;
		 
    }
	
	
}

 
