File size: 1,580 Bytes
a47e1ac | 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 | .verification-container {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
max-width: 600px;
margin: 50px auto;
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
border: 1px solid #e1e1e1;
}
.help-section {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.help-icon {
font-size: 30px;
color: #007cba;
margin-right: 15px;
}
.help-text {
font-size: 14px;
line-height: 1.6;
color: #333;
background: #f1f1f1;
padding: 15px;
border-radius: 8px;
border: 1px solid #ddd;
}
.help-text a {
color: #007cba;
text-decoration: none;
}
.help-text a:hover {
text-decoration: underline;
}
.input-section {
margin-top: 20px;
}
.input-section label {
display: block;
margin-bottom: 10px;
font-size: 16px;
font-weight: bold;
color: #444;
}
.input-text {
width: 100%;
padding: 15px;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
margin-bottom: 20px;
font-size: 16px;
}
.modern-button {
display: inline-block;
background-color: #007cba;
border: none;
color: #fff;
padding: 15px 30px;
border-radius: 8px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.modern-button:hover {
background-color: #005a8c;
} |