CoolFace
Apppublic

Roz-28/Health_Director

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
styles.css118 linesDownload Raw Back to static
1body {2    margin: 0;3    font-family: sans-serif;4    background: linear-gradient(135deg, #009688, #6BBF59); /* Gradient background */5    min-height: 100vh;6    display: flex;7    align-items: center;8    justify-content: center;9  }10  11  /* Language Toggle Links */12  .lang-toggle {13    position: fixed;14    top: 10px;15    right: 10px;16  }17  .lang-toggle a {18    color: #fff;19    text-decoration: none;20    font-weight: bold;21    margin: 0 5px;22  }23  .lang-toggle a:hover {24    text-decoration: underline;25  }26  .lang-toggle a:focus {27    outline: none;28  }29  30  31.container {32    display: flex;33    background: white;34    width: 800px;35    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);36    border-radius: 8px;37    overflow: hidden;38}39 40.left-panel {41    background: rgba(0, 150, 136, 0.9);42    color: white;43    padding: 40px;44    width: 40%;45    text-align: center;46}47 48.left-panel .logo {49    width: 50px;50    margin-bottom: 10px;51}52 53.left-panel button {54    background: white;55    color: #009688;56    border: none;57    padding: 10px;58    margin-top: 20px;59    cursor: pointer;60    border-radius: 5px;61}62 63.right-panel {64    padding: 40px;65    width: 60%;66}67 68.login-form h2 {69    color: #009688;70    margin-bottom: 20px;71}72 73.login-form label {74    display: block;75    margin-top: 10px;76    color: #555;77}78 79.login-form input {80    width: 100%;81    padding: 10px;82    margin-top: 5px;83    border: 1px solid #ccc;84    border-radius: 5px;85}86 87.show-password {88    display: flex;89    align-items: center;90    margin-top: 10px;91}92 93.show-password label {94    margin-left: 5px;95}96 97.sign-in-btn {98    background: #009688;99    color: white;100    border: none;101    width: 100%;102    padding: 10px;103    margin-top: 15px;104    cursor: pointer;105    border-radius: 5px;106}107 108.links {109    text-align: center;110    margin-top: 15px;111}112 113.links a {114    display: block;115    text-decoration: none;116    color: #009688;117    margin-top: 5px;118}