﻿input[type=checkbox] {
    -ms-transform: scale(1.5); /* IE */
    -moz-transform: scale(1.5); /* FF */
    -webkit-transform: scale(1.5); /* Safari and Chrome */
    -o-transform: scale(1.5); /* Opera */    
}
* {
    margin:0;
    padding:0;
    box-sizing:border-box;    
}
body {
    /* display: flex;*/
    /*min-height: 100vh;*/
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#bde0fc,#e8f4fc);
    padding: 10px;
}
.outer-container {
    display: flex;
    margin: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.banner {
    display: flex;
    height: 11vh;
    width: 100%;
    padding: 10px,10px,10px,10px;
    background: url("");
    background-image: url('../img/auxbar-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}
.container {
   box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    max-width: 900px;
    width: 100%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 5px;    
}
    .container .title {
        font-size: 25px;
        font-weight: 500;
        position: relative;
        text-align: center;
    }
        .container .title :before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 500px;
            background: linear-gradient(135deg,#71b7e6,#9b59b6);
            text-align: center;
        }
        
        .container .candidate-details {
            display: flex;
            flex-wrap: wrap;
        }
            .container .candidate-details .input-box {
                width: 100%;
                margin-bottom: 5px;                
            }
            .container .candidate-details .input-box-row {
                display:flex; 
                min-width:100%
            }
            .container .candidate-details .inner-input-box {
               flex:50%;               
            }
         .label{            
            display:block;
            margin:10px 0 12px 0;
            font-weight:500;
            margin-bottom:5px;
         }
                 .checkBox {
                    display:block;
                    width: 100%;
                    padding-left: 15px;
                    margin-top:5px;
                    margin-bottom:10px;
                }
                 .checkBox label {                    
                    margin: 10px 0 12px 10px;
                    font-weight: 500;
                    margin-bottom: 5px;                                    
                }                

                    .container .candidate-details .input-box .label-declaration {
                        display: block;
                        margin: 10px 0 12px 0;
                        font-weight: 500;
                        color: red;
                    }
        .container .candidate-details .input-box .label-alert {
            display: block;
            margin: 5px 0 5px 0;
            font-weight: 500;
            margin-bottom: 1px;
            color: red;
        }  
         .textbox {
            height: 45px;
            width: 100%;
            border-radius: 5px;
            outline: none;
            border: 1px solid #ccc;
            padding-left: 15px;
            font-size: 16px;
            border-bottom-width: 2px;
            transition: all 0.3s ease;
        }
        .container  .candidate-details .input-box .textbox-half-width {
            height: 45px;
            width: 50%;
            border-radius: 5px;
            outline: none;
            border: 1px solid #ccc;
            padding-left: 15px;
            font-size: 16px;
            border-bottom-width: 2px;
            transition: all 0.3s ease;
	    font-family: Calibri;
        }
.FileUpload {
    margin: 10px 0 12px 0;
    font-size:16px;
    font-weight: 500;
    margin-bottom: 5px;
    background-color: #fff;
    color: #9b59b6;
    /*border: 1px solid #AB00CC;*/
    /*font: Verdana 10px;*/
    padding: 1px 4px;
    font-family: Calibri;
}
 .textbox-MultiLine {
    height: 75px;
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
    font-family: Calibri;
}
         .date-of-birth {
            height: 45px;
            width: 32.9%;
            border-radius: 5px;
            outline: none;
            border: 1px solid #ccc;
            padding-left: 15px;
            font-size: 16px;
            border-bottom-width: 2px;
            transition: all 0.3s ease;
	        font-family: Calibri;
        }
.textbox:focus,
.date-of-birth:focus,
.textbox-MultiLine:focus {
    border-color: #9b59b6;
}

.button-Place {
    height: 45px;
    margin: 20px 20px;
}
    .button-Place .Submit {
        height: 100%;
        width: 30%;
        outline: none;
        color: #fff;
        background: linear-gradient(135deg,#003399,#2c3968);
        border: none;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 5px;
    }
        .button-Place .Submit:hover {
            background: linear-gradient(-135deg,#003399,#2c3968);
        }
    .button-Place .Reset {
        height: 100%;
        width: 30%;
        outline: none;
        color: #fff;
        background: linear-gradient(135deg,#006A4E,#1B4D3E);
        border: none;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 5px;
    }
        .button-Place .Reset:hover {
            background: linear-gradient(-135deg,#006A4E,#1B4D3E);
        }
    .button-Place .Home {
        height: 100%;
        width: 30%;
        outline: none;
        color: #fff;
        background: linear-gradient(135deg,#4B0082,#452c63);
        border: none;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 5px;
    }

        .button-Place .Home:hover {
            background: linear-gradient(-135deg,#4B0082,#452c63);
        }

        @media(max-width: 768px) {
                                body{
                                    align-items:flex-start;
                                }
                                .outer-container {
                                    max-width: 100%;                                    
                                }
                                .container {
                                    max-width: 100%;   
                                    padding-left:5px;
                                    padding-right:5px;                                    
                                }
                                    .container  .candidate-details .input-box {
                                        width: 100%;
                                        margin-bottom: 5px;
                                        padding:0;
                                        margin-left:0px;
                                        margin-right:0px;
                                    }
                                    .container  .candidate-details {
                                        max-height:465px;
                                        overflow-y:scroll;  
                                        overflow-x:hidden;
                                    }
                                .candidate-details::-webkit-scrollbar{
                                    width:0;
                                }
                                .container .title {
                                    font-size: 14px;
                                    font-weight: 700; 
                                    margin-bottom:5px;
                                }
                                .container  .candidate-details .input-box .textbox-half_width{
                                    width:100%;
                                }
                                 .date-of-birth {
                                    width:32%;
                                }
                                .button-Place .Submit {                           
                                    font-size: 14px;
                                    font-weight: 300;                           
                                }
                                .button-Place .Reset {
                                    font-size: 14px;
                                    font-weight: 300;
                                }
                                .button-Place .Home {
                                    font-size: 14px;
                                    font-weight: 300;
                                }
            .container .candidate-details .input-box .label-declaration {               
                margin: 5px 0 5px 0;                
            }
            .container .candidate-details .inner-input-box {
                flex: 100%;
            }
            .banner {
                height: 7vh;
                padding: 5px,5px,5px,5px;
            }
        }







    


