body {
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        background-color: #f7f7f7;
    }
    .login-form {
        background-color: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		width: 350px; /* Set a fixed width */
    	max-width: 100%; /* Ensure it's responsive */
    	box-sizing: border-box; /* Include padding in the element's total width */
    	margin: auto; /* Center the form on the page */
    }
    .login-form h2 {
        color: #FFC808;
        margin-bottom: 20px;
    }
    .login-form button[type="submit"] {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 4px;
        background-color: #FFC808;
        color: white;
        cursor: pointer;
        font-size: 16px;
    }
    .login-form button[type="submit"]:hover {
        background-color: #FFC808;
    }
    .login-form .support {
        text-align: center;
        margin-top: 20px;
    }
    .login-form .support a {
        color: #000;
        text-decoration: none;
    }
    .login-form .support a:hover {
        text-decoration: underline;
    }
	.input-bottom-line {
    border: none;
    border-bottom: 2px solid #ccc;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    background-color: transparent;
    margin-bottom: 20px; /* Adjust as needed */
}
.input-bottom-line:focus {
    outline: none;
    border-bottom-color: #FFC808; /* Change color on focus */
}
.agree-to-terms{
	font-size: 10px;
}