/* Reset basic margins and paddings */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.appMain{
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 100%;
			height: 100%;
			max-width: 400px;
		}
/* Login box styling for desktop */
.login-box {
    text-align: center;
}

.login-box h1 {
    color: #333;
    font-size: 2rem;
    text-align:center;
}
.inputArea {
    margin-top: 50px;
    width: 100%;
    /* border: 1px solid #ccc; */
}
/* --- Logo Styling --- */
.logo-container {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align:center;
}

.logo {
    width: 180px; 
    height: auto;
}

/* --- Form Elements Styling --- */
.inputGroup {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 20px;
}
.inputGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: black;
    font-size: 0.95rem;
}
.inputGroup input {
    width: 92%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.inputGroup input:focus {
    border-color: #007bff; 
    outline: none;
}
.login-button {
    width: 80%;
    padding: 14px; 
    background-color: #F15F2C; 
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s;
    
}
.login-button:hover {
    
    background-color: #0056b3; 
}

/* --- Footer Links Styling --- */
.links {
    margin-top: 10px;
    padding-top: 15px; /* Add padding to separate from button */
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #666;
}

.links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.links a:hover {
    text-decoration: underline;
}


/* --- Mobile Responsiveness (Media Query) --- */
@media (max-width: 700px) {
    

    .login-box {
        width: 120; 
        max-width: 190;
        padding: 25px;
    }
    
    .input-group {
        margin-top: 50px;
    }

    .login-box h1 {
        font-size: 2.1rem; 
    }
    /* --- Logo Styling --- */
    .logo-container {
        margin-top: 20px;
    }
}
