import styled, { css } from 'styled-components/native'; export const Container = styled.View` width: 100%; flex: 1; height: ${(props: any) => props?.orientation === 'Portrait' && props?.height ? `${props.height}px` : 'auto'}; `; export const LogoWrapper = styled.View` margin-vertical: 50px; align-items: center; justify-content: center; `; export const BackgroundImage = styled.ImageBackground` width: 100%; height: 100%; display: flex; flex-direction: column; flex: 1; justify-content: space-between; align-items: center; padding: 20px 40px; `; export const FormInput = styled.View` display: flex; flex-direction: column; width: 100%; min-height: 50px; `;