import styled from 'styled-components/native'; import {SafeAreaView} from 'react-native-safe-area-context'; import { widthPercentageToDP as wp, heightPercentageToDP as hp, } from 'react-native-responsive-screen'; import THEME from '@styles/theme'; import FONTS from '@assets/fonts'; export const Container = styled(SafeAreaView)` flex: 1; background-color: ${THEME.PRIMARY.MAIN}; padding: 0 ${wp(5)}px; `; export const Title = styled.Text` color: #ffffff; font-family: ${FONTS.MEDIUM}; font-size: ${wp(5)}px; padding-top: ${hp(10)}px; text-align: center; padding-bottom: ${hp(2)}px; `; export const PhoneNumber = styled.Text` color: ${THEME.SECONDARY.LIGHT}; font-family: ${FONTS.REGULAR}; font-size: ${wp(4)}px; text-align: center; margin-bottom: ${hp(1)}px; `; export const changePhoneNumberButtonStyle = { color: THEME.INFO.LIGHT, fontSize: wp(4), }; export const otpInputViewStyle = { height: hp(6), marginVertical: hp(5), }; export const Timer = styled.View` height: ${hp(5)}px; display: flex; justify-content: center; margin-bottom: ${hp(3)}px; `; export const codeInputFieldStyle = { borderWidth: 0, borderBottomWidth: 1, borderColor: THEME.SECONDARY.LIGHT, fontFamily: FONTS.REGULAR, fontSize: wp(4), color: '#FFFFFF', }; export const codeInputHighlightStyle = { borderBottomWidth: 2, }; export const textButtonStyles = { paddingTop: 0, paddingBottom: 0, };