body {
    display: flex;
	font-family: Arial, sans-serif;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
	background: #343F4F;
}

.login-container {
	margin-top: 30px;
    text-align: left;
    width: 380px;
    padding: 20px;
    border: 0px solid #ccc;
    border-radius: 0px;
	background:  ;
}

.logo {
    width: 100px; /* Sesuaikan ukuran gambar */
    height: auto;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
	color: #FC6D6D;
	font-size: 18px;
}

input {
    padding: 8px;
    margin-bottom: 16px;
	 border-radius: 5px;
	 font-size: 18px;
}


h1 {
    color: #FC6D6D;
    font-size: 2em;
    margin: 0;
    font-family: Arial, sans-serif;
}



button {
    background-color: #FC6D6D;
    color: white;
	font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #FC6D6D;
}


        /* Initial style for the text */
        .hover-text {
            color: blue; /* Set the default text color */
            transition: color 0.3s; /* Add a smooth transition effect */
			color: #FC6D6D;
			font-size: 18px;
			 
        }

        /* Style to be applied when hovering over the text */
        .hover-text:hover {
            color: red; /* Set the text color on hover */
        }
		
		.login-container a {
    text-decoration: none;
}