body { margin: 0; padding: 0; font-family: Arial, sans-serif; background-image: url('/Images/library.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; color: #333; } .container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; } header { text-align: center; margin-bottom: 20px; font-size: 2.5em; color: #fff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); } .divider { display: flex; justify-content: space-between; width: 80%; max-width: 900px; background-color: rgba(255, 255, 255, 0.9); border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); padding: 20px; } .section { flex: 1; text-align: center; } .section h2 { font-size: 1.8em; margin-bottom: 15px; } .inputfield { position: relative; } .inputfield input { width: 275px; padding: 10px 20px 10px 20px; border: 1px solid rgb(207, 207, 207); outline: none; font-size: 1.25em; border-radius: 6px; line-height: 35px; } .inputfield span { position: absolute; top: 50%; transform: translateY(-50%); left: 0; padding: 10px; pointer-events: none; font-size: 1.25em; color: rgb(170, 170, 170); transition: 0.35s; margin-left: 10px; border-radius: 6px; } .inputfield input:valid ~ span, .inputfield input:focus ~ span { top: 0; color: rgb(76, 194, 95); transform: translateY(-10px); font-size: 1.19em; padding: 0px 10px; background: rgb(255, 255, 255); } .inputfield input:focus { border-color: rgb(76, 194, 95); } button { padding: 10px 20px; background-color: rgb(127, 221, 238); color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 1.25em; width: 315px; height: 50px; margin-bottom: 20px; transition: 0.2s; } button:hover { background-color: rgb(39, 69, 241); } p { text-align: center; font-size: 17px; } a { color: green; text-decoration: none; } form { display: flex; flex-direction: column; align-items: center; gap: 19px; } .line { width: 1px; background-color: #ccc; margin: 0 10px; }