19 lines
360 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const Wrapper = styled.div`
background: #ffffff;
padding: 45px 30px 22px 30px;
border-radius: 2px;
box-shadow: 0 2px 4px #e3e9f3;
.inputStyle {
max-width: 358px;
}
.subFormWrapper {
margin-bottom: 14px;
padding: 23px 30px 0 30px;
background-color: #fafafb;
}
`;
export default Wrapper;