import styled from 'styled-components/native'; export const FormSide = styled.View` display: flex; width: 100%; flex-direction: column; align-items: center; margin: auto; `; export const FormInput = styled.View` display: flex; flex-direction: column; width: 100%; padding: 0 0px 15px; ` export const ButtonsSection = styled.View` margin-top: 14px; width: 100%; display: flex; flex-direction: column; ` export const SocialButtons = styled.View` width: 100%; margin-top: 10px; ` export const InputWrapper = styled.View` flex-direction: row; align-items: center; min-height: 40px; margin-vertical: 6px; `;