C1
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
font-size: 16px;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
button:hover {
opacity: 0.9;
transform: translateY(-2px);
}
/* First button: Submit */
button:first-child {
background-color: #ffc107;
color: black;
border: 1px solid #e0a800;
}
/* Last button: Reset */
button:last-child {
background-color: #dc3545;
color: white;
border: 1px solid #c82333;
}
/* Logo image style */
.logo-img {
width: 60px;
height: 60px;
object-fit: contain;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease;
}
.logo-img:hover {
transform: scale(1.05);
}
Comments
Post a Comment