.msgbox { padding-top: 25px; padding-left: 40px; padding-right: 40px; padding-bottom: 25px; background: #242424; -webkit-box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.75); box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.75); border-radius: 3px; } .msgbox.input { max-width: 500px; width: 100%; } .msgbox > .input { background: #141414; border: none; box-sizing: border-box; margin-bottom: 25px; padding: 10px; width: 100%; } .msgbox > .msg { font-size: 16px; font-weight: bold; } .msgbox > .detail { font-size: 14px; margin-top: 5px; } .msgbox > .errors { margin-bottom: 25px; } .msgbox > .errors { color: #f44747; } .msgbox > .button-wrapper { display: flex; flex-direction: row; justify-content: space-between; } .msgbox > .button-wrapper > button { flex: 1; border-radius: 2px; padding: 10px; color: white; background: #3d3d3d; border: 0px; cursor: pointer; opacity: 0.8; } .msgbox > .button-wrapper > button:hover { opacity: 1; } .msgbox > .button-wrapper > button:not(:last-child) { margin-right: 8px; }