Spaces:
Runtime error
Runtime error
File size: 1,659 Bytes
4340a39 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | body {
font-family: Arial, sans-serif;
background-color: #f0f4f8;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.appointment-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.clock {
background-color: #a3d5e1;
color: #000000;
padding: 20px;
border-radius: 10px;
width: 250px;
margin-bottom: 40px;
}
.time {
font-size: 2.5rem;
font-weight: bold;
}
.gmt {
font-size: 1.25rem;
margin-top: 10px;
font-style: italic;
}
.appointment-form {
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px;
font-size: 16px;
}
.appointment-form h2 {
font-size: 2rem;
margin-bottom: 20px;
color: #0abaeb;
}
.appointment-form .input-group {
margin-bottom: 20px;
}
.appointment-form input,
.appointment-form textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
color: #333;
}
.appointment-form input[type="date"],
.appointment-form input[type="time"] {
cursor: pointer;
}
.appointment-form button {
width: 100%;
padding: 12px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.appointment-form button:hover {
background-color: #2980b9;
}
.appointment-form textarea {
min-height: 100px;
resize: none;
}
|