import {ImageStyle, StyleSheet} from "react-native";
import Fonts from "../../../Themes/Fonts";

export default StyleSheet.create({
  loginFormCardView: {
    width: "100%"
  },
  loginFormTextInput: {
    ...Fonts.style.farsiInput,
    color: '#212121',
    height: 48,
    marginTop: 10
  },
  loginFormFloatingLabel: {
    ...Fonts.style.farsiInput,
  },
  loginFormPrefixText: {
    ...Fonts.style.farsiInput,
    marginRight: 4,
    marginLeft:4,
    marginTop:10,
    paddingBottom:2,
  },
  loginFormPhoneInputContainer: {
    flexDirection: 'row',
    justifyContent:'center',
    alignItems:'center'
  },
  avatar: {
    width:128,
    height:128,
    borderRadius:64,
    overflow:'hidden',
    margin:32,
    alignSelf:'center'
  } as ImageStyle,
});
