/* Google Font 
@import url('/* Google Font 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
*
{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html, body {
    height: 100;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width:100vw;
    background: url("sign-in.jpeg") repeat center center fixed!important;
    background-size: cover;
    /*background-position: center!important;*/
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

/* Login Box */
.login-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

/* Heading */
.login-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
}

.input-group .icon {
    margin-right: 10px;
    font-size: 16px;
}

.input-group input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 16px;
}

/* Forgot Password */
.forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    font-size: 18px;
    border: none;
    width: 80%;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    transform: scale(1.05);
}

/* Sign Up Link */
p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 600;
}

p a:hover {
    text-decoration: underline;
}
;

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

/* Login Box */
.login-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

/* Heading */
.login-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
}

.input-group .icon {
    margin-right: 10px;
    font-size: 16px;
}

.input-group input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 16px;
}

/* Forgot Password */
.forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}
/*show password*/
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.input-group input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
}
.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #555;
}
/* Login Button */
.login-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    font-size: 18px;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    transform: scale(1.05);
}

/* Sign Up Link */
p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 600;
}

p a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {  /* Tablets & smaller screens */
    body {
        background-size: contain;  /* Shows the full image */
        background-color: rgb(147, 197, 255);   /* Adds background in case of gaps */
    }
} 

