46 lines
916 B
TypeScript
46 lines
916 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#f8fafc',
|
|
justifyContent: 'center',
|
|
paddingHorizontal: 24,
|
|
},
|
|
card: {
|
|
backgroundColor: '#ffffff',
|
|
borderRadius: 24,
|
|
paddingVertical: 40,
|
|
paddingHorizontal: 24,
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: 0, height: 4 },
|
|
shadowOpacity: 0.05,
|
|
shadowRadius: 12,
|
|
elevation: 4,
|
|
borderWidth: 1,
|
|
borderColor: '#f1f5f9',
|
|
},
|
|
headerContainer: {
|
|
alignItems: 'center',
|
|
marginBottom: 32,
|
|
},
|
|
title: {
|
|
fontSize: 28,
|
|
fontWeight: '800',
|
|
color: '#1e293b',
|
|
marginBottom: 12,
|
|
letterSpacing: -0.5,
|
|
},
|
|
subtitle: {
|
|
fontSize: 14,
|
|
color: '#94a3b8',
|
|
textAlign: 'center',
|
|
lineHeight: 20,
|
|
paddingHorizontal: 16,
|
|
},
|
|
footerContainer: {
|
|
marginTop: 24,
|
|
alignItems: 'center',
|
|
},
|
|
});
|