Advanced CSS styling
You can further customize the style of your transfer page by using the styling theme below.Background Container
.request-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
height: 100%;
background-repeat: no-repeat;
background-size: cover;
position: relative;
overflow-x: hidden;
padding: 2rem 0;
transition: background-image 0.3s linear;
-webkit-transition: background-image 0.3s linear;
}
Top bar Div with your logo on the left

.topbar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 85px;
overflow: hidden;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 1.2rem;
padding: 10px;
}
Logo on the top left

.topbar img {
display:none;
}
Request Container Block

messageText {
text-align: center;
margin-top: 20px;
padding: 2rem;
font-size: 1.1rem;
font-weight: 300;
font-style: italic;
border-left: 3px solid var(--myHoverColor); // Left border color
position: relative;
backdrop-filter: blur(15px);
background-color: #1a79a2c4;
max-width: 510px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border-radius: 10px;
-webkit-backdrop-filter: blur(15px);
font-weight: bold;
}
Profile Image
.profileImage {
display: flex;
justify-content: center;
margin-bottom: 1.2rem;
left: 0;
right: 0;
}
.requestersName {
font-size: 24px;
font-style: normal;
font-weight: 600;
margin-bottom: 0.5rem;
}
Upload Container

.upload-container {
margin-top: 1rem;
margin-left: 0.5rem;
margin-right: 0.5rem;
padding: 2.5rem .5rem;
width: 500px;
max-width: 95vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--myWhiteColor);
border-radius: 12px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border: 1px solid var(--myBorderLine);
margin-bottom: 1rem;
}
Add Cross Icon
.icon {
margin-bottom: 1rem;
font-size: 2.8rem;
transition: 200ms transform ease-in;
color: #0092D1;
}
Submit Button
button {
border-radius: 8px;
background-color: var(--myDarkIconColor);
font-size: 1.1rem;
cursor: pointer;
width: 120px;
height: 45px;
color: var(--myWhiteColor);
border: none;
background-color: #00d126;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}