LoginStyled.tsx 1.46 KB
import styled from 'styled-components';

export const Container = styled.div `
    width : 100%;
    height : 80vh;
    position : absolute;
    display : flex;
    justify-content : center;
    align-items : center;
`;

export const LoginWrapper = styled.div `
    width : 35%;
    border : 1px solid #ddd;
    border-radius : 3px;
    display : flex;
    flex-direction : column;
    justify-content : center;
    align-items : center;
    padding : 30px 3px;

    box-shadow: 0px 0px 10px #a0a0a0;

`;

export const LoginInputWrapper = styled.div `
    margin : 10px 0;
    width : 80%;
`;

export const LoginEachInputWrapper = styled.div `
    display : flex;
    flex-direction : column;
    justify-content : center;

`;

export const LoginInputText = styled.div `
    width : 100%;
    margin : 30px 0 10px 0;
`;

export const LoginInput = styled.input `
    border : 1px solid #a0a0a0;
    padding : 10px;
    border-radius : 3px;
    width : 100%;
    align-self : center;
`;

export const LoginButtonWrapper = styled.div `
    width: 30%;
    display : flex;
    flex-direction : row;
    justify-content : center;
    align-items : center;
`;

export const LoginButton = styled.button `
    margin : 30px 0 5px 0;
    background-color : #fff;
    border : 1px solid #a0a0a0;
    border-radius : 5px;
    padding : 10px 30px;

    cursor : pointer;
    
    transition : .25s all;

    color : #343434;

    &:hover {
        background-color : #343434;
        color : #fff;
    }
`;